Skip to content

Commit e352dd8

Browse files
author
Alice Ferrazzi
committed
init/elivepatch.init: consistency variable call
1 parent efec551 commit e352dd8

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

init/elivepatch.init

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ DAEMON_NAME=elivepatch-server
99
PIDFILE=/var/run/${DAEMON_NAME}.pid
1010

1111
start () {
12-
ebegin "Starting system $DAEMON_NAME daemon"
12+
ebegin "Starting system ${DAEMON_NAME} daemon"
1313
start-stop-daemon --start --background --pidfile ${PIDFILE} --user ${DAEMON_USER} --make-pidfile --exec ${DAEMON} runserver
14-
eend $? "Failed to start $DAEMON_NAME"
14+
eend $? "Failed to start ${DAEMON_NAME}"
1515
}
1616

1717
stop () {
18-
ebegin "Stopping system $DAEMON_NAME daemon"
18+
ebegin "Stopping system ${DAEMON_NAME} daemon"
1919
start-stop-daemon --stop --pidfile ${PIDFILE} --user ${DAEMON_USER} --retry 10
20-
eend $? "Failed to stop $DAEMON_NAME"
20+
eend $? "Failed to stop ${DAEMON_NAME}"
2121
}

0 commit comments

Comments
 (0)