Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Scheduling Scripts
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
xx network
Scheduling Scripts
Commits
08707e18
Commit
08707e18
authored
Jan 11, 2022
by
Jake Taylor
Browse files
Options
Downloads
Patches
Plain Diff
fix log
parent
c345d51e
No related branches found
No related tags found
1 merge request
!9
Remove truncate and add on conflict clause instead
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
scheduling.py
+1
-1
1 addition, 1 deletion
scheduling.py
with
1 addition
and
1 deletion
scheduling.py
+
1
−
1
View file @
08707e18
...
...
@@ -231,7 +231,7 @@ def revoke_auth(to_revoke):
log
.
info
(
f
"
Revoking access to
{
len
(
to_revoke
)
}
nodes...
"
)
for
node_ip
in
to_revoke
:
cmd
=
f
"
sudo nft -a list chain inet filter input | grep
'
{
node_ip
}
'
| awk -F
'
handle
'
'
{{print $2}}
'
| xargs -Ixxx sudo nft delete rule inet filter input handle xxx
"
log
.
debug
(
cmd
)
log
.
info
(
f
"
Running revoke command:
{
cmd
}
"
)
p
=
subprocess
.
Popen
(
cmd
.
split
())
output
,
error
=
p
.
communicate
()
if
output
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment