diff options
author | Michael Elkins <melkins@tislabs.com> | 2011-01-24 23:16:10 +0000 |
---|---|---|
committer | Michael Elkins <melkins@tislabs.com> | 2011-01-24 23:16:10 +0000 |
commit | 6174e9a6ead260b734e6aafb2f98942b4524c41d (patch) | |
tree | 066e4d0fde5639df67cc774f5499b633807940e1 | |
parent | eada6d6b96a9dbe6538eabf338d5b6425c4a8704 (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.py | 2 |
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: |