mirror of
https://github.com/systemd/systemd.git
synced 2024-12-23 21:35:11 +03:00
ff12a7954c
As in2a5fcfae02
and in3e67e5c992
using /usr/bin/env allows bash to be looked up in PATH rather than being hard-coded. As with the previous changes the same arguments apply - distributions have scripts to rewrite shebangs on installation and they know what locations to rely on. - For tests/compilation we should rather rely on the user to have setup there PATH correctly. In particular this makes testing from git easier on NixOS where do not provide /bin/bash to improve compose-ability.
71 lines
1.6 KiB
Bash
Executable File
71 lines
1.6 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
set -x
|
|
set -e
|
|
set -o pipefail
|
|
|
|
# sleep interval (seconds)
|
|
sleep_interval=1
|
|
# extend_timeout_interval second(s)
|
|
extend_timeout_interval=1
|
|
# number of sleep_intervals before READY=1
|
|
start_intervals=10
|
|
# number of sleep_intervals before exiting
|
|
stop_intervals=10
|
|
# run intervals, number of sleep_intervals to run
|
|
run_intervals=7
|
|
# service name
|
|
SERVICE=unknown
|
|
|
|
while [ $# -gt 0 ];
|
|
do
|
|
eval ${1%=*}=${1#*=}
|
|
shift
|
|
done
|
|
|
|
# We convert to usec
|
|
extend_timeout_interval=$(( $extend_timeout_interval * 1000000 ))
|
|
|
|
trap "{ touch /${SERVICE}.terminated; exit 1; }" SIGTERM SIGABRT
|
|
|
|
rm -f /${SERVICE}.*
|
|
touch /${SERVICE}.startfail
|
|
|
|
systemd-notify EXTEND_TIMEOUT_USEC=$extend_timeout_interval
|
|
while [ $start_intervals -gt 0 ]
|
|
do
|
|
sleep $sleep_interval
|
|
start_intervals=$(( $start_intervals - 1 ))
|
|
systemd-notify EXTEND_TIMEOUT_USEC=$extend_timeout_interval
|
|
done
|
|
|
|
systemd-notify --ready --status="Waiting for your request"
|
|
|
|
touch /${SERVICE}.runtimefail
|
|
rm /${SERVICE}.startfail
|
|
|
|
systemd-notify EXTEND_TIMEOUT_USEC=$extend_timeout_interval
|
|
while [ $run_intervals -gt 0 ]
|
|
do
|
|
sleep $sleep_interval
|
|
run_intervals=$(( $run_intervals - 1 ))
|
|
systemd-notify EXTEND_TIMEOUT_USEC=$extend_timeout_interval
|
|
done
|
|
|
|
systemd-notify STOPPING=1
|
|
|
|
touch /${SERVICE}.stopfail
|
|
rm /${SERVICE}.runtimefail
|
|
|
|
systemd-notify EXTEND_TIMEOUT_USEC=$extend_timeout_interval
|
|
while [ $stop_intervals -gt 0 ]
|
|
do
|
|
sleep $sleep_interval
|
|
stop_intervals=$(( $stop_intervals - 1 ))
|
|
systemd-notify EXTEND_TIMEOUT_USEC=$extend_timeout_interval
|
|
done
|
|
|
|
touch /${SERVICE}.success
|
|
rm /${SERVICE}.stopfail
|
|
|
|
exit 0
|