blob: 9e848fe39daeb27b768505da4008be348a7949e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
post_install() {
echo " ==> Add the expressvpn daemon to system startup wtih 'rc-update add expressvpnd default'"
echo " ==> Start the expressvpn daemon now with 'rc-service expressvpnd start'"
}
post_upgrade() {
post_install "$1"
}
pre_remove() {
echo " ==> Make sure you run 'rc-update del expressvpnd default'"
}
|