-
Notifications
You must be signed in to change notification settings - Fork 6
/
pswreset.sh
43 lines (36 loc) · 1.38 KB
/
pswreset.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/bin/bash
# Author: Ulrich Block <ulrich.block@easy-wi.com>
#
# This file is part of Easy-WI.
#
# Easy-WI 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, either version 3 of the License, or
# (at your option) any later version.
#
# Easy-WI 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 Easy-WI. If not, see <http://www.gnu.org/licenses/>.
#
# Zum installieren:
# chmod 755 /etc/init.d/password
# update-rc.d password defaults
#
# Zum enfernen:
# update-rc.d -f password remove
# rm /etc/init.d/password
# bei https --no-check-certificate als zusaetzlicher Paramter
if [[ "$1" == "start" ]]; then
sleep 60
STRING=`wget --no-check-certificate -q -O - https://wi.domain.de/get_password.php | sed 's/^\xef\xbb\xbf//g'`
PASSWORD=`echo $STRING | awk -F ':' '{print $1}'`
if ([[ "$PASSWORD" != "" ]] && [[ "$PASSWORD" != "old" ]]); then
/usr/sbin/usermod -p `perl -e 'print crypt("'$PASSWORD'","Sa")'` root
fi
update-rc.d -f password remove
rm /etc/init.d/password
fi