Skip to content
Snippets Groups Projects
Commit c16f8c26 authored by Edric Milaret's avatar Edric Milaret
Browse files

update script with new daemon location

Daemon binary is now installed in /sbin

Change-Id: If8ce40e1dcac20b030e257cbf890bdacdc31e37e
Tuleap: #350
parent 36ee557a
No related branches found
No related tags found
No related merge requests found
......@@ -188,7 +188,7 @@ def run_run(args):
dring_log = open("daemon.log", 'a')
dring_log.write('=== Starting daemon (%s) ===' % time.strftime("%d/%m/%Y %H:%M:%S"))
dring_process = subprocess.Popen(
["./install/daemon/libexec/dring", "-c", "-d"],
["./install/daemon/sbin/dring", "-c", "-d"],
stdout=dring_log,
stderr=dring_log
)
......@@ -210,7 +210,7 @@ def run_run(args):
if args.debug:
subprocess.call(
['gdb','-x', 'gdb.gdb', './install/daemon/libexec/dring'],
['gdb','-x', 'gdb.gdb', './install/daemon/sbin/dring'],
)
if args.background == False:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment