blob: d73560ebddcb2ab17a12bd11f16e2b345b1abafd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
post_install() {
echo "Enable the service:"
echo ""
echo "systemctl enable --now uresourced"
echo ""
echo "Restart the user systemd instance; i.e., user@UID.service or reboot"
echo ""
}
post_upgrade() {
echo "Restart service:"
echo ""
echo "systemctl daemon-reload"
echo "systemctl restart uresourced"
echo ""
echo "Restart the user systemd instance; i.e., user@UID.service or reboot"
echo ""
}
|