summaryrefslogtreecommitdiffstats
path: root/busybox.pkg/prerm
blob: a726c639cf09942ad0c2060e7cda90d9e21ec0e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

if [ "x${1}" = 'xupgrade' ]; then
	if [ -e /usr/share/busybox/init-scripts ]; then
		while read script; do
			"/etc/init.d/${script}" stop
		done </usr/share/busybox/init-scripts
	fi
	while read link name prio; do
		update-alternatives --remove "${name}" "${link}.busybox"
	done </usr/share/busybox/alternatives
fi