You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh
|
|
#
|
|
# Copyright (c) 2018 Gregory L. Dietsche <Gregory.Dietsche@cuw.edu>
|
|
# This is free software, licensed under the MIT License
|
|
#
|
|
uci del_list dhcp.@dnsmasq[0].addnhosts=/etc/safe-search/enabled
|
|
uci add_list dhcp.@dnsmasq[0].addnhosts=/etc/safe-search/enabled
|
|
uci commit dhcp
|
|
|
|
#/etc/init.d/dnsmasq reload #safe-search-update does this for us.
|
|
/usr/sbin/safe-search-update
|
|
|
|
exit 0
|