Odoo is an all-in-one management software that offers a range of business applications that form a complete suite of enterprise management applications targeting companies of all sizes. Odoo is an all-in-one business software including CRM, website/e-commerce, billing, accounting, manufacturing, warehouse - and project management, and inventory. ok ajacoutot@
17 lines
296 B
Bash
Executable File
17 lines
296 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $OpenBSD: odoo.rc,v 1.1.1.1 2019/06/15 12:17:58 robert Exp $
|
|
|
|
daemon="${TRUEPREFIX}/bin/odoo"
|
|
daemon_flags="-c ${SYSCONFDIR}/odoo/odoo.conf"
|
|
daemon_user="_odoo"
|
|
|
|
. /etc/rc.d/rc.subr
|
|
|
|
pexp="${MODPY_BIN} ${daemon}${daemon_flags:+ ${daemon_flags}}"
|
|
|
|
rc_bg=YES
|
|
rc_reload=NO
|
|
|
|
rc_cmd $1
|