1
0
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:
Seth Schoen
2012-11-16 14:45:31 -08:00
parent 72501d04bf
commit f759e26e58

View File

@@ -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 $@ &