preinst is in cobbler 2.4.1-0ubuntu2.
This file is a maintainer script. It is executed when installing (*inst) or removing (*rm) the package.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | #!/bin/sh
set -e
# Fix world-readable permissions on /etc/cobbler/users.digest if upgrading
# from a version which had it set incorrectly by default, the file is still
# there and still has the original incorrect permissions (LP: #858860).
if [ "$1" = "upgrade" ] \
&& dpkg --compare-versions "$2" lt "2.2.2-0ubuntu14" \
&& [ -f /etc/cobbler/users.digest \
-a `stat -c%a /etc/cobbler/users.digest` = "644" ]; then
chmod 600 /etc/cobbler/users.digest
fi
# Automatically added by dh_installinit
if [ "$1" = install ] || [ "$1" = upgrade ]; then
if [ -e "/etc/init.d/cobbler" ] && [ -L "/etc/init.d/cobbler" ] \
&& [ $(readlink -f "/etc/init.d/cobbler") = /lib/init/upstart-job ]
then
rm -f "/etc/init.d/cobbler"
fi
fi
# End automatically added section
|