minor pkg fixes

This commit is contained in:
Hannes Mehnert 2018-10-12 19:56:17 +02:00
parent e413b8c99a
commit 3abd769425
3 changed files with 4 additions and 4 deletions

View File

@ -2,7 +2,7 @@ name: albatross
version: 1.0.%%GITVER%%_1
origin: local/albatross
comment: Albatross: Managing virtual machines
www: https://github.com/hannesm/vmm
www: https://github.com/hannesm/albatross
maintainer: Hannes Mehnert <hannes@mehnert.org>
prefix: /usr/local
licenselogic: single

View File

@ -32,7 +32,7 @@ pidfile="/var/run/albatross_console.pid"
procname="/usr/local/libexec/albatross/vmm_console"
albatross_console_start () {
/usr/sbin/daemon -p "${pidfile}" -u "${albatross_console_user}" -S \
/usr/sbin/daemon -S -p "${pidfile}" -u "${albatross_console_user}" \
"${procname}" "${albatross_console_flags}"
}

View File

@ -67,8 +67,8 @@ albatross_daemon_precmd() {
}
albatross_daemon_start () {
/usr/sbin/daemon -S -o "{albatross_daemon_output}" -p "${pidfile}" \
"${procname}" "${albatross_daemon_flags}"
/usr/sbin/daemon -S -p "${pidfile}" "${procname}" \
"${albatross_daemon_flags}"
}
run_rc_command "$1"