blob: 149e0f76a0ef8d83ded6e50f8b7e5c1c1bb70d52 (
plain)
1
2
3
4
5
6
7
8
9
10
|
post_install() {
# NetExtender needs to edit pppd script to automatically add route to sslvpn.
/usr/sbin/netExtender -i
echo
echo "To allow non-root users to use NetExtender, run chmod -v u+s /usr/sbin/pppd"
}
post_remove() {
echo
echo "If you had allowed non-root users to use NetExtender, you may wish to run chmod -v u-s /usr/sbin/pppd"
}
|