blob: 76e8c50fa4a29e95fd4204c2eadbcc0ddcab5057 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
post_install() {
echo ""
echo "==> To enable automatic backup push to GitHub, run as your user:"
echo " systemctl --user enable --now cachyos-backup-push.timer"
echo " systemctl --user enable --now cachyos-backup-extras.timer"
echo ""
echo "==> Then initialize your backup config:"
echo " cachyos-backup --init"
echo ""
}
post_upgrade() {
echo ""
echo "==> If you haven't already, enable the push timer:"
echo " systemctl --user enable --now cachyos-backup-push.timer"
echo ""
}
|