mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-25 12:15:32 +03:00
50 lines
1.1 KiB
Text
Executable file
50 lines
1.1 KiB
Text
Executable file
#!/sbin/openrc-run
|
|
|
|
# swatch init.d file for alpine linux.
|
|
|
|
name=swatch
|
|
daemon=/usr/bin/$name
|
|
configfile=/etc/${name}/swatchrc
|
|
tailfile=/var/log/messages
|
|
|
|
SVC="${SVCNAME#*.}"
|
|
if [ -n "${SVC}" ] && [ "${SVCNAME}" != "${name}" ]; then
|
|
SVCPID="${name}.${SVC}.pid"
|
|
configfile="${configfile}.${SVC}"
|
|
tailfile=$(find /var/log -name "${SVC}" | head -1)
|
|
[ ! "${tailfile}" ] && tailfile="/var/log/${SVC}"
|
|
else
|
|
SVCPID="${name}.pid"
|
|
fi
|
|
|
|
depend() {
|
|
# need net
|
|
after syslog
|
|
}
|
|
|
|
start() {
|
|
ebegin "Starting ${name}"
|
|
einfo "Preparing to monitor ${tailfile}"
|
|
if [ ! -e "${tailfile}" ]; then
|
|
eerror "${tailfile} does not exist"
|
|
return 1
|
|
fi
|
|
if [ ! -e "${configfile}" ]; then
|
|
eerror "Configfile ${configfile} is missing"
|
|
return 1
|
|
fi
|
|
mkdir -p "${scriptdir}"
|
|
start-stop-daemon --start --quiet --background \
|
|
--make-pidfile --pidfile /var/run/${SVCPID} \
|
|
--exec ${daemon} -- \
|
|
--config-file="${configfile}" --script-dir="${scriptdir}" \
|
|
--tail-file="${tailfile}" --tail-args="${tailargs}"
|
|
eend $?
|
|
}
|
|
|
|
stop() {
|
|
ebegin "Stopping ${name}"
|
|
kill $(ps | grep .swatch_script.$(cat /var/run/${SVCPID}) | grep -v 'grep' | awk '{ print $1}')
|
|
eend $?
|
|
}
|
|
|