Last active
          June 15, 2023 00:35 
        
      - 
      
 - 
        
Save tmkasun/4f9e1fe6ed8254a115d2924f6b3b885d to your computer and use it in GitHub Desktop.  
Revisions
- 
        
tmkasun revised this gist
Jan 9, 2021 . 1 changed file with 1 addition and 1 deletion.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,7 +1,7 @@ #!/bin/sh /etc/rc.common # OpenWrt /etc/init.d/ script to automatically add ipsets across reboots # For more info about how to write init scripts https://openwrt.org/docs/techref/initscripts # # howto: # - upload this file as /etc/init.d/autoipset  - 
        
tmkasun created this gist
Jan 9, 2021 .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,22 @@ #!/bin/sh /etc/rc.common # OpenWrt /etc/init.d/ script to automatically add ipsets across reboots # # # howto: # - upload this file as /etc/init.d/autoipset # - # chmod 755 /etc/init.d/autoipset # - # /etc/init.d/autoipset enable # - # /etc/init.d/autoipset start # queue this init script to start (i.e., create IPSet) right before dnsmasq starts (19) START=18 setipset() { ipset -N fbcdn hash:ip ipset -N facebook hash:ip } start() { setipset }