linuxOS_AP05/debian/base-linaro/binary/var/lib/dpkg/info/rcconf.postinst

20 lines
344 B
Plaintext
Raw Normal View History

2025-09-26 01:40:02 +00:00
#!/bin/sh
#
# This is the postinst script for the Debian GNU/Linux rcconf package
# Written by Atsushi Kamoshida <kamop@debian.org>
#
set -e
case "$1" in
configure)
if [ -f /usr/sbin/rcconf ] && [ ! -f /usr/bin/rcconf ]; then
ln -s /usr/sbin/rcconf /usr/bin/rcconf
fi
;;
*)
;;
esac
exit 0