services-garbaye/podman-peerjs/40_stop.sh
2021-05-04 22:19:01 +02:00

16 lines
348 B
Bash
Executable file

#!/usr/bin/env bash
ABSDIR="$( dirname "$(readlink -f -- "$0")" )"
source ${ABSDIR}/../functions.sh
source ${ABSDIR}/vars.sh
ensure_pwd_is_scriptdir
ensure_not_root
if ! systemctl --user is-active --quiet service ${service_name}; then
echo Service ${service_name} is already stopped.
exit 1
fi
systemctl --user stop ${service_name}.service