mirror of
https://github.com/openwrt/packages.git
synced 2025-12-26 11:16:31 +04: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
|