11 lines
257 B
Bash
11 lines
257 B
Bash
#!/bin/sh
|
|
|
|
if [ "$1" != "upgrade" ]; then
|
|
update-alternatives --remove sh /bin/busybox
|
|
update-alternatives --remove vi /bin/busybox
|
|
find /etc -name [SK][0-9][0-9]hwclock.sh | xargs rm -f
|
|
find /etc -name [SK][0-9][0-9]syslog | xargs rm -f
|
|
fi
|
|
|
|
exit 0
|