Enable podman housekeeping services

This commit is contained in:
Ohad Livne 2025-09-27 18:27:52 +03:00
parent f59c0c5ac0
commit 20fafdf44d
Signed by: libohad-dev
GPG key ID: 34FDC68B51191A4D

View file

@ -3,7 +3,17 @@
set -euo pipefail
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