blob: acddedcdcb3667b7a338d9dd8974631652f75580 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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 the service:"
echo ""
echo "systemctl restart uresourced"
echo ""
echo "Restart the user systemd instance; i.e., user@UID.service or reboot"
echo ""
}
|