0f75b2635e
'echo -n' is not a POSIX construct (no flag support), we shoud use 'printf', especially in init script. This patch was generated by the following command line: git grep -l 'echo -n' -- `git ls-files | grep -v 'patch'` | xargs sed -i 's/echo -n/printf/' Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
28 lines
551 B
Bash
28 lines
551 B
Bash
#!/bin/sh
|
|
|
|
# (Re)create directories
|
|
mkdir -p /var/run/c-icap
|
|
mkdir -p /var/log/c-icap
|
|
|
|
case "$1" in
|
|
start)
|
|
printf "Starting c-icap server: "
|
|
start-stop-daemon -S -q -b -m -p /var/run/c-icap.pid \
|
|
-x /usr/bin/c-icap -- -N
|
|
[ $? == 0 ] && echo "OK" || echo "FAIL"
|
|
;;
|
|
stop)
|
|
printf "Stopping c-icap server: "
|
|
start-stop-daemon -K -q -p /var/run/c-icap.pid
|
|
[ $? = 0 ] && echo "OK" || echo "FAIL"
|
|
;;
|
|
restart|reload)
|
|
$0 stop
|
|
sleep 1
|
|
$0 start
|
|
;;
|
|
*)
|
|
echo "Usage: /etc/init.d/S96cicap {start|stop|restart|reload}"
|
|
exit 1
|
|
esac
|