summaryrefslogtreecommitdiff
path: root/res/debian
diff options
context:
space:
mode:
Diffstat (limited to 'res/debian')
-rw-r--r--res/debian/rhizi.init8
1 files changed, 7 insertions, 1 deletions
diff --git a/res/debian/rhizi.init b/res/debian/rhizi.init
index c8c6870d..d00d97da 100644
--- a/res/debian/rhizi.init
+++ b/res/debian/rhizi.init
@@ -16,7 +16,7 @@ PATH=/sbin:/usr/sbin:/bin:/usr/bin
DESC="rhizi-server"
NAME=rhizi
DAEMON=/srv/www/rhizi/rhizi.net/bin/rz_server.py
-PIDFILE=/var/run/$NAME.pid
+PIDFILE=/var/run/$NAME/$NAME.pid
SCRIPTNAME=/etc/init.d/$NAME
USERNAME=www-data
GROUPNAME=www-data
@@ -38,6 +38,12 @@ ARGS__START_STOP_DAEMON="--make-pidfile --background --chuid ${USERNAME}:${GROUP
# and status_of_proc is working.
. /lib/lsb/init-functions
+# make sure /var/run/$NAME exists with proper +w mode as the uid:gid used to fork the server
+if [ ! -d /var/run/$NAME ]; then
+ mkdir /var/run/$NAME
+ chown ${USERNAME}:${GROUPNAME} /var/run/$NAME
+fi
+
#
# Function that starts the daemon/service
#