Files
buildroot/package/apache/S50apache
Fiona Klute 3862abb010 package/apache: fix checkpackage warnings in init script
Signed-off-by: Fiona Klute <fiona.klute@gmx.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2025-12-30 14:17:47 +01:00

16 lines
295 B
Bash

#!/bin/sh
# shellcheck disable=SC2034 # checkpackage-required variable
DAEMON="apache"
case "$1" in
start|restart|graceful|graceful-stop|stop)
apachectl -k "$1"
;;
reload)
apachectl -k restart
;;
*)
echo "Usage: $0 {start|restart|reload|graceful|graceful-stop|stop}"
exit 1
esac