Last active
October 25, 2024 06:10
-
-
Save missing233/3dafb6ee549ed2271c20bd700b88a9cd to your computer and use it in GitHub Desktop.
Revisions
-
missing233 revised this gist
Jan 28, 2024 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,5 @@ #!/bin/sh # Place in /etc/hotplug.d/iface/ [ "$INTERFACE" = "wan6" ] || exit 0 -
missing233 created this gist
Oct 14, 2023 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,15 @@ #!/bin/sh [ "$INTERFACE" = "wan6" ] || exit 0 CRON_CMD='0 * * * * kill -SIGUSR1 $(pgrep odhcp6c)' if [ "$ACTION" = "ifup" ]; then grep -Fq "$CRON_CMD" /etc/crontabs/root || { echo "$CRON_CMD" >> /etc/crontabs/root /etc/init.d/cron restart } elif [ "$ACTION" = "ifdown" ]; then sed -i "/$(printf '%b' "$CRON_CMD" | sed 's:[\\/.*^$]:\\&:g')/d" /etc/crontabs/root /etc/init.d/cron restart fi