You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-office/openerp-web/files/openerp-web

23 lines
465 B

#!/sbin/runscript
# Additional options that are passed to the daemon.
DAEMON_OPTS="-c ${CONFIGFILE}"
depend() {
after openerp-server
}
start() {
ebegin "Starting openerp-web"
start-stop-daemon --start --quiet --pidfile "${PIDFILE}" --exec /usr/bin/openerp-web \
--make-pidfile --background -- ${DAEMON_OPTS}
eend $?
}
stop() {
ebegin "Stopping openerp-web"
start-stop-daemon --stop --quiet --pidfile "${PIDFILE}" --oknodo
rm -f "${PIDFILE}"
eend $?
}