Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.toolbox
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Guillaume Hervier
slapos.toolbox
Commits
6bf80423
Commit
6bf80423
authored
Jan 05, 2012
by
Antoine Catton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add runafter script.
parent
b12ca332
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
124 additions
and
0 deletions
+124
-0
setup.py
setup.py
+1
-0
slapos/runafter.py
slapos/runafter.py
+123
-0
No files found.
setup.py
View file @
6bf80423
...
@@ -63,6 +63,7 @@ setup(name=name,
...
@@ -63,6 +63,7 @@ setup(name=name,
'pubsubserver = slapos.pubsub:main'
,
'pubsubserver = slapos.pubsub:main'
,
'pubsubnotifier = slapos.pubsub.notifier:main'
,
'pubsubnotifier = slapos.pubsub.notifier:main'
,
'logfollower = slapos.logfollower:run'
,
'logfollower = slapos.logfollower:run'
,
'runafter = slapos.runafter:main'
,
]
]
},
},
)
)
slapos/runafter.py
0 → 100644
View file @
6bf80423
##############################################################################
#
# Copyright (c) 2010 Vifib SARL and Contributors. All Rights Reserved.
#
# WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsibility of assessing all potential
# consequences resulting from its eventual inadequacies and bugs
# End users who are looking for a ready-to-use solution with commercial
# guarantees and support are strongly adviced to contract a Free Software
# Service Company
#
# This program is Free Software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 3
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
##############################################################################
import
argparse
import
os
import
sys
import
signal
import
struct
children
=
[]
execution_failed
=
False
def
run_executable
(
executable
,
redirect_stderr
):
if
redirect_stderr
:
# Redirect stderr to stdout
# and stderr to devnull
stderr_fileno
=
sys
.
stderr
.
fileno
()
stdout_fileno
=
sys
.
stdout
.
fileno
()
null_fileno
=
os
.
open
(
os
.
devnull
,
os
.
O_WRONLY
)
os
.
close
(
stderr_fileno
)
os
.
dup2
(
stdout_fileno
,
stderr_fileno
)
os
.
dup2
(
null_fileno
,
stdout_fileno
)
os
.
close
(
null_fileno
)
os
.
execl
(
executable
,
executable
)
def
forkandrun
(
executable
,
redirect_stderr
):
global
children
try
:
pid
=
os
.
fork
()
if
pid
>
0
:
# Parent process
children
.
append
(
pid
)
else
:
# Children process
run_executable
(
executable
,
redirect_stderr
)
except
OSError
:
print
>>
sys
.
stderr
,
"Failed to run %r"
%
executable
def
split_status
(
status_code
):
return
struct
.
unpack
(
'BB'
,
struct
.
pack
(
'H'
,
status_code
))
def
main
():
global
children
,
execution_failed
def
sigchld_handler
(
signum
,
frame
):
global
children
,
execution_failed
pid
,
status
=
os
.
wait
()
exitcode
,
sigcode
=
split_status
(
status
)
if
exitcode
!=
0
or
sigcode
!=
0
:
execution_failed
=
True
children
.
remove
(
pid
)
def
sigterm_handler
(
signum
,
frame
):
global
children
for
pid
in
children
:
try
:
os
.
kill
(
pid
,
signal
.
SIGTERM
)
except
:
pass
raise
SystemExit
signal
.
signal
(
signal
.
SIGTERM
,
sigterm_handler
)
signal
.
signal
(
signal
.
SIGCHLD
,
sigchld_handler
)
argument_parser
=
argparse
.
ArgumentParser
(
description
=
"Execute binary list of executable after the first one has "
"finished. This uses fork and wait for child. Sending a "
"SIGTERM to this program will properly send a SIGTERM to its "
"children."
)
argument_parser
.
add_argument
(
'--stdout'
,
required
=
False
,
action
=
'store_true'
,
help
=
"Redirect stderr on stdout and ignore "
"stdout."
)
argument_parser
.
add_argument
(
'--first-one'
,
'-f'
,
metavar
=
'main'
,
required
=
True
,
help
=
'First executable to run.'
)
argument_parser
.
add_argument
(
'executables'
,
metavar
=
'executable'
,
nargs
=
'+'
)
arguments
=
argument_parser
.
parse_args
()
forkandrun
(
arguments
.
first_one
,
arguments
.
stdout
)
while
children
:
signal
.
pause
()
if
not
execution_failed
:
for
executable
in
arguments
.
executables
:
forkandrun
(
executable
,
arguments
.
stdout
)
while
children
:
signal
.
pause
()
else
:
if
arguments
.
stdout
:
output
=
sys
.
stdout
else
:
output
=
sys
.
stderr
print
>>
output
,
"Failed to run the first executable."
if
execution_failed
:
return
1
return
0
if
__name__
==
'__main__'
:
sys
.
exit
(
main
())
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment