-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservice-test.sh
81 lines (69 loc) · 1.87 KB
/
service-test.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#!/system/bin/sh
# Magisk Module: ToyBox-Ext v1.0.8
# Copyright (c) zgfg @ xda, 2022-
# GitHub source: https://github.com/zgfg/ToyBox-Ext
# Module's own path (local path)
MODDIR=${0%/*}
cd $MODDIR
# Log for debugging
LogFile="$MODDIR/service.log"
exec 3>&2 2>$LogFile
set -x
LogTime=$(date +%c)
# Current time
DLTIME=$(date +"%s")
# Source the original toybox binary type and last download time
TBSCRIPT='./tbtype.sh'
if [ -f $TBSCRIPT ]
then
. $TBSCRIPT
fi
# Passed time since the last download
PASSEDTIME=$(($DLTIME - $LASTDLTIME))
# Waiting time between downloads (15 days)
#WAITTIME=$((15 * 24 * 3600))
WAITTIME=$((20 * 60)) # toDo: Remove - for testing
# If waiting time passed, download the latest binary again
if [ ! -z $TBTYPE ] && [ $PASSEDTIME -gt $WAITTIME ]
then
# Wait to finish booting
until [ "$(getprop sys.boot_completed)" = 1 ]
do
sleep 1
done
# and few more seconds
sleep 3
rm -f $TBTYPE
/data/adb/magisk/busybox wget -c -T 20 "http://landley.net/toybox/bin/$TBTYPE"
fi
# Test the download
if [ ! -z $TBTYPE ] && [ -f $TBTYPE ]
then
# Compare checksums for the old and new binary
MD5Old=$(md5sum toybox-ext | head -c 32)
MD5New=$(md5sum "$TBTYPE" | head -c 32)
if [ "$MD5New" = "$MD5Old" ]
then
# Save the download time
echo "LASTDLTIME=$DLTIME" >> $TBSCRIPT
# Delete, same as old binary
rm -f $TBTYPE
else
# Test downloaded binary
chmod 755 $TBTYPE
Applets=$(./$TBTYPE)
if [ -z "$Applets" ]
then
# Delete, not working
rm -f $TBTYPE
else
# Save the binary type and installation time
echo "TBTYPE=$TBTYPE" > $TBSCRIPT
echo "LASTDLTIME=$DLTIME" >> $TBSCRIPT
# Notify user to reboot
exec 2>&3 3>&-
su -lp 2000 -c "cmd notification post -S bigtext -t 'ToyBox-Ext Module' 'Tag' 'Reboot to update ToyBox binary'" 1>/dev/null
exec 3>&2 2>>$LogFile
fi
fi
fi