30 lines
851 B
Plaintext
30 lines
851 B
Plaintext
post_install() {
|
|
echo ':: In order to enable nordvpn you have to start the following service:'
|
|
echo ' sudo systemctl enable --now nordvpnd'
|
|
echo ':: You have to add yourself to the nordvpn group:'
|
|
echo " sudo gpasswd -a USERNAME nordvpn"
|
|
echo ':: You then have to restart for the group to be created:'
|
|
echo " reboot"
|
|
}
|
|
|
|
post_upgrade() {
|
|
echo ':: In order to enable nordvpn you have to start the following service:'
|
|
echo ' sudo systemctl enable --now nordvpnd'
|
|
echo ':: You have to add yourself to the nordvpn group:'
|
|
echo " sudo gpasswd -a USERNAME nordvpn"
|
|
echo ':: You then have to restart for the group to be created:'
|
|
echo " reboot"
|
|
}
|
|
|
|
pre_install() {
|
|
chattr -i /var/lib/nordvpn/data/*
|
|
}
|
|
|
|
pre_upgrade() {
|
|
chattr -i /var/lib/nordvpn/data/*
|
|
}
|
|
|
|
pre_remove() {
|
|
chattr -i /var/lib/nordvpn/data/*
|
|
}
|