21 lines
262 B
Plaintext
21 lines
262 B
Plaintext
|
|
#! /bin/sh
|
||
|
|
#
|
||
|
|
# sysv-rc prerm
|
||
|
|
#
|
||
|
|
|
||
|
|
set -e
|
||
|
|
|
||
|
|
case "$1" in
|
||
|
|
remove)
|
||
|
|
# Remove files generated by insserv to disable concurrent booting
|
||
|
|
rm -f /etc/init.d/.depend.boot
|
||
|
|
rm -f /etc/init.d/.depend.start
|
||
|
|
rm -f /etc/init.d/.depend.stop
|
||
|
|
;;
|
||
|
|
*) : ;;
|
||
|
|
esac
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
exit 0
|