diff options
Diffstat (limited to 'myrpki/run-daemons.sh')
-rwxr-xr-x | myrpki/run-daemons.sh | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/myrpki/run-daemons.sh b/myrpki/run-daemons.sh deleted file mode 100755 index c24af775..00000000 --- a/myrpki/run-daemons.sh +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/sh - -# $Id$ - -set -x - -cd `dirname $0` - -if test -z "$STY" -then - - exec screen -L sh $0 ${1+"$@"} - -else - - #screen python ../rpkid/irdbd.py - #screen python ../rpkid/rpkid.py - #screen python ../rpkid/pubd.py - - python ../rpkid/irdbd.py & - python ../rpkid/rpkid.py & - python ../rpkid/pubd.py & - - #if test -n "$*"; then sleep 5; "$@"; fi - - # Apparently Control-C-ing out of this kills the daemons, which is - # what we want but was a surprise to me. Probably SIGHUP effect due - # to running under screen, or something like that. - wait - -fi |