services-garbaye/podman-peerjs/30_start.sh

16 lines
339 B
Bash
Raw Normal View History

2021-05-04 20:14:08 +00:00
#!/usr/bin/env bash
ABSDIR="$( dirname "$(readlink -f -- "$0")" )"
source ${ABSDIR}/../functions.sh
source ${ABSDIR}/vars.sh
ensure_pwd_is_scriptdir
ensure_not_root
2021-05-04 20:19:01 +00:00
if systemctl --user is-active --quiet service ${service_name}; then
2021-05-04 20:14:08 +00:00
echo Service ${service_name} is already running.
exit 1
fi
2021-05-04 20:34:43 +00:00
systemctl --user start ${service_name}