blob: a21bbe14f9f4ffe919b6cb4a9ad3207c28ad616d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
post_install() {
echo "[PDAV] To use pdav you need to enable it yourself with the following commands"
echo "[PDAV] 'systemctl --user daemon-reload'"
echo "[PDAV] 'systemctl --user --now enable pdav.service'"
}
post_upgrade() {
echo "[PDAV] Please restart your user daemon with the following commands"
echo "[PDAV] 'systemctl --user daemon-reload'"
echo "[PDAV] 'systemctl --user --now restart pdav.service'"
}
|