Fix up the sysadm init.d scripts, set PREFIX properly and drop

the useless &
This commit is contained in:
Kris Moore
2016-11-15 23:08:44 -05:00
parent 752662ad8b
commit 645213c16d
3 changed files with 4 additions and 6 deletions

View File

@@ -2,8 +2,7 @@
# Copyright (c) 2016 Ken Moore <ken@ixsystems.com>
# Released under the 2-clause BSD license
command="/usr/local/bin/sysadm-server"
command_args="&"
command="%%PREFIX%%/bin/sysadm-server"
pid=/var/run/sysadm.pid
name="SysAdm Server (WebSocket)"

View File

@@ -2,8 +2,7 @@
# Copyright (c) 2016 Ken Moore <ken@ixsystems.com>
# Released under the 2-clause BSD license
command="/usr/local/bin/sysadm-bridge"
command_args="&"
command="%%PREFIX%%/bin/sysadm-bridge"
pid=/var/run/sysadm-bridge.pid
name="SysAdm Bridge"

View File

@@ -2,8 +2,8 @@
# Copyright (c) 2016 Ken Moore <ken@ixsystems.com>
# Released under the 2-clause BSD license
command="/usr/local/bin/sysadm-server"
command_args="-rest &"
command="%%PREFIX%%/bin/sysadm-server"
command_args="-rest"
pid=/var/run/sysadm-rest.pid
name="SysAdm Server (REST)"