13 lines
277 B
Bash
13 lines
277 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
|
||
|
|
||
|
podman stop ${container_name}
|
||
|
systemctl --user disable ${service_name}
|
||
|
systemctl --user stop ${service_name}
|