mirror of
https://github.com/certbot/certbot.git
synced 2026-01-26 07:41:33 +03:00
add $@ to pass command line arguments through to daemons
This commit is contained in:
@@ -4,22 +4,22 @@
|
||||
redis-cli del exit
|
||||
|
||||
echo "Starting logger daemon..."
|
||||
nohup ./logging-daemon.py &
|
||||
nohup ./logging-daemon.py $@ &
|
||||
|
||||
# TODO: an attempt to reconstruct or expire sessions from previous
|
||||
# runs of the daemon should occur here.
|
||||
|
||||
echo "Starting issue daemon..."
|
||||
nohup ./issue-daemon.py &
|
||||
nohup ./issue-daemon.py $@ &
|
||||
|
||||
for instance in a b c
|
||||
do
|
||||
echo "Starting testchallenge daemon $instance..."
|
||||
nohup ./testchallenge-daemon.py &
|
||||
nohup ./testchallenge-daemon.py $@ &
|
||||
done
|
||||
|
||||
echo "Starting makechallenge daemon..."
|
||||
nohup ./makechallenge-daemon.py &
|
||||
nohup ./makechallenge-daemon.py $@ &
|
||||
|
||||
echo "Starting payment daemon..."
|
||||
nohup ./payment-daemon.py &
|
||||
nohup ./payment-daemon.py $@ &
|
||||
|
||||
Reference in New Issue
Block a user