20 lines
509 B
Bash
Executable file
20 lines
509 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
|
|
|
|
check_container_exists ${container_name} || {
|
|
echo container ${container_name} must exist in order to add it to systemd
|
|
exit 1
|
|
}
|
|
|
|
ensure_systemd_as_user_dir_exists
|
|
podman generate systemd --name ${container_name} > ${HOME}/.config/systemd/user/${service_name}
|
|
|
|
podman stop ${container_name}
|
|
systemctl --user --now enable ${service_name}
|