1
0
mirror of https://github.com/certbot/certbot.git synced 2026-01-26 07:41:33 +03:00
Files
certbot/server-ca/start_daemons
2012-11-05 17:32:35 -08:00

23 lines
503 B
Bash
Executable File

#!/bin/sh
# By default, daemons are not being told to exit!
redis-cli del exit
echo "Starting logger daemon..."
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 &
for instance in a b c
do
echo "Starting testchallenge daemon $instance..."
nohup ./testchallenge-daemon.py &
done
echo "Starting makechallenge daemon..."
nohup ./makechallenge-daemon.py &