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
61d1d62f
Commit
61d1d62f
authored
Jan 11, 2022
by
Jake Taylor
Browse files
Options
Downloads
Patches
Plain Diff
fix running commands
parent
ca11c8b6
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
+4
-6
4 additions, 6 deletions
scheduling.py
with
4 additions
and
6 deletions
scheduling.py
+
4
−
6
View file @
61d1d62f
...
...
@@ -232,12 +232,10 @@ def revoke_auth(to_revoke):
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
.
info
(
f
"
Running revoke command:
{
cmd
}
"
)
p
=
subprocess
.
Popen
(
cmd
.
split
())
output
,
error
=
p
.
communicate
()
if
output
:
log
.
debug
(
output
)
if
error
:
raise
IOError
(
error
)
p
=
subprocess
.
Popen
([
'
/bin/bash
'
,
'
-c
'
,
cmd
])
p
.
wait
(
5
)
if
p
.
returncode
!=
0
:
raise
OSError
(
f
"
Revoke command exited with return code
{
p
.
returncode
}
"
)
def
id_to_reg_code
(
cmix_id
):
...
...
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