blob: 7a147323c4ac26eb17ed85436fc6c2f12e2b126c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
post_install() {
echo ":: VPN Unlimited client application has been installed."
echo ":: To start the VPN Unlimited daemon, you need to enable and start its systemd service."
echo ":: You can do this by running: sudo systemctl enable --now vpn-unlimited-daemon.service"
}
post_upgrade() {
echo ":: VPN Unlimited client application has been upgraded."
echo ":: If the VPN Unlimited daemon was running, it might need to be restarted."
echo ":: You can restart it by running: sudo systemctl restart vpn-unlimited-daemon.service"
}
post_remove() {
echo ":: VPN Unlimited client application has been removed."
}
|