#!/bin/sh

if [ "x${1}" = 'xremove' ]; then
	if [ -e /usr/share/busybox/init-scripts ]; then
		while read script; do
			"/etc/init.d/${script}" stop
			"/etc/init.d/${script}" disable
		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