Enable podman housekeeping services
This commit is contained in:
parent
f59c0c5ac0
commit
20fafdf44d
1 changed files with 11 additions and 1 deletions
|
|
@ -3,7 +3,17 @@
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
IFS=$'\n\t'
|
IFS=$'\n\t'
|
||||||
|
|
||||||
systemctl --user enable --now syncthing.service
|
USER_UNITS=(
|
||||||
|
# keep-sorted start
|
||||||
|
podman-auto-update.timer
|
||||||
|
podman-clean-transient.service
|
||||||
|
syncthing.service
|
||||||
|
# keep-sorted end
|
||||||
|
)
|
||||||
|
|
||||||
|
for unit in "${USER_UNITS[@]}"; do
|
||||||
|
systemctl --user enable --now "${unit}"
|
||||||
|
done
|
||||||
|
|
||||||
mkdir --parents ~/Pictures/screenshots
|
mkdir --parents ~/Pictures/screenshots
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue