aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Elkins <melkins@tislabs.com>2011-01-24 23:16:10 +0000
committerMichael Elkins <melkins@tislabs.com>2011-01-24 23:16:10 +0000
commit6174e9a6ead260b734e6aafb2f98942b4524c41d (patch)
tree066e4d0fde5639df67cc774f5499b633807940e1
parenteada6d6b96a9dbe6538eabf338d5b6425c4a8704 (diff)
the commands in ${sbindir} do not have the .py suffix
svn path=/rpkid/rpki-start-servers.py; revision=3653
-rw-r--r--rpkid/rpki-start-servers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rpkid/rpki-start-servers.py b/rpkid/rpki-start-servers.py
index 1d7862df..54e1f438 100644
--- a/rpkid/rpki-start-servers.py
+++ b/rpkid/rpki-start-servers.py
@@ -60,7 +60,7 @@ for o, a in opts:
cfg = rpki.config.parser(cfg_file, "myrpki")
def run(name):
- cmd = (sys.executable, os.path.join(rpkid_dir, name + ".py"), "-c", cfg.filename)
+ cmd = (sys.executable, os.path.join(rpkid_dir, name), "-c", cfg.filename)
if debug:
proc = subprocess.Popen(cmd + ("-d",), stdout = open(name + ".log", "a"), stderr = subprocess.STDOUT)
else: