16 lines
340 B
Bash
16 lines
340 B
Bash
|
#!/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 is-active --quiet service ${service_name}; then
|
||
|
echo Service ${service_name} is already running.
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
systemctl --user start ${service_name}.service
|