linuxOS_AP05/debian/base-linaro/binary/var/lib/dpkg/info/sysv-rc.prerm

21 lines
262 B
Plaintext
Raw Normal View History

2025-09-26 01:40:02 +00:00
#! /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