1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
#!/bin/sh
set -e
for FILE in /etc/issue.linuxlogo /etc/issue.linuxlogo.ascii
do
if [ ! -L "${FILE}" ]
then
if [ -e "${FILE}" ]
then
mv -f "${FILE}" /var/run/linuxlogo/"$(basename ${FILE})"
fi
ln -sf /var/run/linuxlogo/"$(basename ${FILE})" "${FILE}"
fi
done
case "${1}" in
configure)
rm -f /usr/bin/linux_logo_wait
if [ -x "$(which invoke-rc.d)" ]
then
invoke-rc.d linuxlogo restart || exit ${?}
else
/etc/init.d/linuxlogo restart || exit ${?}
fi
;;
abort-upgrade|abort-remove|abort-deconfigure)
;;
*)
echo "postinst called with unknown argument \`${1}'" >&2
exit 1
;;
esac
#DEBHELPER#
exit 0
|