2014-09-12 13:00:14 -06:00
|
|
|
#!/bin/sh
|
2015-01-18 12:36:49 -07:00
|
|
|
<<'LICENSE'
|
2024-05-29 01:45:25 -06:00
|
|
|
Part of AREDN® -- Used for creating Amateur Radio Emergency Data Networks
|
2022-09-27 21:03:55 -06:00
|
|
|
Copyright (C) 2022 Conrad Lara
|
|
|
|
See Contributors file for additional contributors
|
2015-01-18 12:36:49 -07:00
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation version 3 of the License.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
LICENSE
|
2014-09-12 13:00:14 -06:00
|
|
|
|
2022-09-27 21:03:55 -06:00
|
|
|
DHCPLANSECTION=$(uci show dhcp|grep interface=\'lan\'|sed "s/dhcp.\@dhcp\[\(.*\)\].interface=\'lan\'/\1/")
|
2014-09-12 13:00:14 -06:00
|
|
|
|
2022-09-27 21:03:55 -06:00
|
|
|
logger "Recovery Mode: Resetting root password to: hsmm"
|
2014-09-12 13:00:14 -06:00
|
|
|
/usr/local/bin/setpasswd hsmm
|
|
|
|
|
2022-09-27 21:03:55 -06:00
|
|
|
logger "Recovery Mode: Restarting uhttpd"
|
2014-09-15 17:56:41 -06:00
|
|
|
/etc/init.d/uhttpd restart
|
|
|
|
|
2022-09-27 21:03:55 -06:00
|
|
|
if [ -n "$DHCPLANSECTION" ] ; then
|
|
|
|
logger "Recovery Mode: Enabling DHCP on lan interface"
|
|
|
|
/sbin/uci -c /etc/config.mesh -q set dhcp.@dhcp[$DHCPLANSECTION].ignore=0
|
|
|
|
uci -c /etc/config.mesh -q commit dhcp
|
2014-09-12 13:00:14 -06:00
|
|
|
|
2022-09-27 21:03:55 -06:00
|
|
|
logger "Recovery Mode: Restarting dnsmasq"
|
|
|
|
if [ ! -d "/tmp/hosts" ] ; then
|
|
|
|
mkdir /tmp/hosts
|
|
|
|
fi
|
2014-09-12 13:03:16 -06:00
|
|
|
/etc/init.d/dnsmasq restart
|
|
|
|
fi
|