We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent efec551 commit e352dd8Copy full SHA for e352dd8
1 file changed
init/elivepatch.init
@@ -9,13 +9,13 @@ DAEMON_NAME=elivepatch-server
9
PIDFILE=/var/run/${DAEMON_NAME}.pid
10
11
start () {
12
- ebegin "Starting system $DAEMON_NAME daemon"
+ ebegin "Starting system ${DAEMON_NAME} daemon"
13
start-stop-daemon --start --background --pidfile ${PIDFILE} --user ${DAEMON_USER} --make-pidfile --exec ${DAEMON} runserver
14
- eend $? "Failed to start $DAEMON_NAME"
+ eend $? "Failed to start ${DAEMON_NAME}"
15
}
16
17
stop () {
18
- ebegin "Stopping system $DAEMON_NAME daemon"
+ ebegin "Stopping system ${DAEMON_NAME} daemon"
19
start-stop-daemon --stop --pidfile ${PIDFILE} --user ${DAEMON_USER} --retry 10
20
- eend $? "Failed to stop $DAEMON_NAME"
+ eend $? "Failed to stop ${DAEMON_NAME}"
21
0 commit comments