aboutsummaryrefslogtreecommitdiff
path: root/myrpki/run-daemons.sh
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2009-09-16 18:14:58 +0000
committerRob Austein <sra@hactrn.net>2009-09-16 18:14:58 +0000
commitbfab61657d0226dce23d5e359d4dbc351eb7a7c9 (patch)
tree625a4ba49415e8bdfeb77f00ea6e34a52ae1ae46 /myrpki/run-daemons.sh
parent80c43433012375cfe411cac5bc304a4dea1af658 (diff)
Update shell scripts
svn path=/myrpki/run-daemons.sh; revision=2759
Diffstat (limited to 'myrpki/run-daemons.sh')
-rwxr-xr-xmyrpki/run-daemons.sh30
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