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

26 lines
581 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 $@ &
echo "Starting payment daemon..."
nohup ./payment-daemon.py $@ &