#!/bin/sh

if [ "x${1}" = 'xupgrade' ]; then
	if [ -f /usr/share/busybox/init-scripts ]; then
		while read -r script enabled; 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
	if [ -f /usr/share/busybox/www/SHA256SUMS ]; then
		if [ -f /var/www/index.html ] && \
				sha256sum -cs /usr/share/busybox/www/SHA256SUMS
		then
			# /var/www/index.html exists and hasn't been modified by
			# the user.
			rm /var/www/index.html
		fi
		rm /usr/share/busybox/www/SHA256SUMS
	fi
fi