mirror of
https://github.com/novatiq/packages.git
synced 2026-07-29 06:53:07 +01:00
7 lines
224 B
Bash
Executable File
7 lines
224 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ "$ACTION" != "ifup" ] && [ "$ACTION" != "ifupdate" ]; then exit 0; fi
|
|
|
|
logger -t vpn-policy-routing "Reloading vpn-policy-routing due to $ACTION of $INTERFACE ($DEVICE)"
|
|
/etc/init.d/vpn-policy-routing reload
|