Last active
May 8, 2017 19:50
-
-
Save ilyasProgrammer/7344375ffee20e239f2af7e0c0e8ee62 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ORIGINAL: | |
http://www.surekhatech.com/blog/running-odoo-8-0-as-a-servi-2 | |
https://www.linode.com/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04 | |
To run: sudo /etc/init.d/openerp-server start | |
xxx:~/mods/kro$ cat /etc/init.d/openerp-server | |
#!/bin/sh | |
### BEGIN INIT INFO | |
# Provides: odoo-server | |
# Required-Start: $remote_fs $syslog | |
# Required-Stop: $remote_fs $syslog | |
# Should-Start: $network | |
# Should-Stop: $network | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: Business Applications | |
# Description: ODOO Business Applications. | |
### END INIT INFO | |
PATH=/bin:/sbin:/usr/bin | |
DAEMON=/home/developer/odoo/odoo.py | |
NAME=openerp-server | |
DESC=odoo_server_daemon | |
# Specify the user name (Default: openerp). | |
USER=developer | |
# Specify an alternate config file (Default: /etc/odoo-server.conf). | |
CONFIGFILE="/home/developer/odoo.cfg" | |
UPDATEMODULES="kro" | |
DB="kro2" | |
# pidfile | |
PIDFILE=/var/run/$NAME.pid | |
# Additional options that are passed to the Daemon. | |
DAEMON_OPTS="-c $CONFIGFILE -d $DB -u $UPDATEMODULES" | |
[ -x $DAEMON ] || exit 0 | |
[ -f $CONFIGFILE ] || exit 0 | |
checkpid() { | |
[ -f $PIDFILE ] || return 1 | |
pid=`cat $PIDFILE` | |
[ -d /proc/$pid ] && return 0 | |
return 1 | |
} | |
case "${1}" in | |
start) | |
echo -n "Starting ${DESC}: " | |
start-stop-daemon --start --quiet --pidfile ${PIDFILE} --chuid ${USER} --background --make-pidfile --exec ${DAEMON} -- ${DAEMON_OPTS} | |
echo "${NAME}." | |
;; | |
stop) | |
echo -n "Stopping ${DESC}: " | |
start-stop-daemon --stop --quiet --pidfile ${PIDFILE} --oknodo | |
echo "${NAME}." | |
;; | |
restart|force-reload) | |
echo -n "Restarting ${DESC}: " | |
start-stop-daemon --stop --quiet --pidfile ${PIDFILE} --oknodo | |
sleep 1 | |
start-stop-daemon --start --quiet --pidfile ${PIDFILE} --chuid ${USER} --background --make-pidfile --exec ${DAEMON} -- ${DAEMON_OPTS} | |
echo "${NAME}." | |
;; | |
*) | |
N=/etc/init.d/${NAME} | |
echo "Usage: ${NAME} {start|stop|restart|force-reload}" >&2 | |
exit 1 | |
;; | |
esac | |
exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment