Recent content by RichS

  • SNBForums Code of Conduct

    SNBForums is a community for everyone, no matter what their level of experience.

    Please be tolerant and patient of others, especially newcomers. We are all here to share and learn!

    The rules are simple: Be patient, be nice, be helpful or be gone!

  1. R

    dnsmasq.postconf not running

    That was it! Thank you for the tip. I opted for GNU find because the Busybox version doesn't support -type and shell globbing wouldn't work correctly if nothing was matched. Final solution: for script in /jffs/scripts/dnsmasq-postconf.d/*; do if [ -f $script ]; then source $script...
  2. R

    dnsmasq.postconf not running

    I've been trying to figure out why my dnsmasq.postconf script isn't running when the router boots up. I'm currently running an Asus RT-AC68u with Asuswrt-Merlin 384.10_2. Afaik, the permissions are correct: admin@crouter:/tmp/home/root# ls -l /jffs/scripts/dnsmasq.postconf -rwxr-xr-x 1 admin...
Top