#!/bin/sh
#
# common/base-files package pre installation script
#

# Remove old files
rm -f /etc/init.d/cleanlog.sh
rm -f /etc/init.d/bootsequence-check.sh
rm -f /etc/rcS.d/S41bootsequence-check
rm -f /etc/rc2.d/S21doremi-rc.d
rm -f /etc/rc2.d/S01doremi-rc.d
rm -f /etc/rcS.d/S70cleanlog
rm -f /etc/rc0.d/K99zbootsequence-check
rm -f /etc/rc6.d/K99zbootsequence-check
rm -f /doremi/etc/hotplug.d/99_bootsequence-check
rm -f /doremi/etc/rcS.d/02_bootsequence-check

# Stop daemon
test -x /etc/init.d/cron && \
	/etc/init.d/cron stop > /dev/null 2>&1

exit 0
