-
Notifications
You must be signed in to change notification settings - Fork 33
/
updateconf
executable file
·82 lines (73 loc) · 1.9 KB
/
updateconf
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
82
#!/bin/sh
#
# scratchpkg
#
# Copyright (c) 2018 by Emmett1 ([email protected])
#
# 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, either version 3 of the License, or
# (at your option) any later version.
#
# 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 <https://www.gnu.org/licenses/>.
#
EDITOR=${EDITOR:-vi}
command -v $EDITOR >/dev/null || {
echo "Editor '$EDITOR' not exist. Append 'EDITOR=<your editor>' to ${0##*/}."
exit 2
}
[ "$(id -u)" = 0 ] || {
echo "This operation need root access. Exiting..."
exit 1
}
spkgnew=$(find /etc -regextype posix-extended -regex ".+\.spkgnew" 2> /dev/null)
[ "$spkgnew" ] || {
echo "Nothing to do. Exiting..."
exit 0
}
for file in $spkgnew; do
currentfile=${file%.*}
if [ ! -e "$currentfile" ]; then
echo "Remove '$file', '$currentfile' not exist."
rm -f "$file"
sleep 1
continue
fi
while true; do
clear
diff -u $currentfile $file --color=always
if [ $? = 0 ]; then
echo "Remove '$file', no diff found."
rm -f "$file"
sleep 1
break
fi
echo
echo "File: $currentfile"
echo
printf "[U]pdate [D]iscard [E]dit [K]eep ?: "
read ACTION
echo
case $ACTION in
U|u) echo "Replace '$currentfile' with '$file'."
mv -f "$file" "$currentfile"
break;;
D|d) echo "Remove '$file'."
rm -f "$file"
break;;
E|e) vim "$currentfile";;
K|k) echo "Keeping both."
break;;
esac
done
sleep 1
done
clear
echo "Done updating package's configuration files."
exit 0