diff options
author | Rob Austein <sra@hactrn.net> | 2009-10-09 19:16:13 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2009-10-09 19:16:13 +0000 |
commit | 5a4b6370e4c26441232ede5308390767b5a027f6 (patch) | |
tree | 3b85dc6638e305ba3bfd79e818f9ab5cc3401284 /myrpki | |
parent | 7e1c883acdc46f4ac5a4bef3200d93ed85d1fb9e (diff) |
Doh, parameterized commands work better when the commands use the
parameters.
This script almost certainly should be replaced by something smarter,
written in Python, which knows how to read myrpki.conf.
svn path=/myrpki/start-servers.sh; revision=2816
Diffstat (limited to 'myrpki')
-rw-r--r-- | myrpki/start-servers.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/myrpki/start-servers.sh b/myrpki/start-servers.sh index a17d2a1c..c9460d42 100644 --- a/myrpki/start-servers.sh +++ b/myrpki/start-servers.sh @@ -19,15 +19,15 @@ : ${want_pubd=no} : ${want_rootd=no} -python ../rpkid/irdbd.py -c myrpki.conf >> irdbd.log 2>&1 & -python ../rpkid/rpkid.py -c myrpki.conf >> rpkid.log 2>&1 & +python ${rpkid_dir}/irdbd.py -c myrpki.conf >> irdbd.log 2>&1 & +python ${rpkid_dir}/rpkid.py -c myrpki.conf >> rpkid.log 2>&1 & if test "$want_pubd" = "yes" then - python ../rpkid/pubd.py -c myrpki.conf >> pubd.log 2>&1 & + python ${rpkid_dir}/pubd.py -c myrpki.conf >> pubd.log 2>&1 & fi if test "$want_rootd" = "yes" then - python ../rpkid/rootd.py -c myrpki.conf >> rootd.log 2>&1 & + python ${rpkid_dir}/rootd.py -c myrpki.conf >> rootd.log 2>&1 & fi |