D7net Mini Sh3LL v1
OFF | cURL : OFF | WGET : ON | Perl : ON | Python : OFF Directory (0755) : /var/www/../lib/dpkg/info/ |
|
Current File : /var/www/../lib/dpkg/info/cryptsetup.postinst |
#! /bin/sh
set -e
# needed for debconf magic in prerm script
. /usr/share/debconf/confmodule
# summary of how this script can be called:
# * <postinst> `configure' <most-recently-configured-version>
# * <old-postinst> `abort-upgrade' <new version>
# * <conflictor's-postinst> `abort-remove' `in-favour' <package>
# <new-version>
# * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
# <failed-install-package> <version> `removing'
# <conflicting-package> <version>
case "$1" in
configure)
for file in cryptdisks_start cryptdisks_stop; do
if [ ! -e "/usr/sbin/$file" ]; then
ln -s "/sbin/$file" "/usr/sbin/$file"
fi
done
# Do a number of checks on the currently installed crypttab
. /lib/cryptsetup/functions
crypttab_foreach_entry crypttab_parse_options || true
;;
abort-upgrade|abort-remove|abort-deconfigure)
;;
*)
echo "postinst called with unknown argument \`$1'" >&2
exit 1
;;
esac
# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.
# Automatically added by dh_installinit/12.10ubuntu1
if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then
if [ -x "/etc/init.d/cryptdisks" ]; then
update-rc.d cryptdisks defaults >/dev/null || exit 1
fi
fi
# End automatically added section
# Automatically added by dh_installinit/12.10ubuntu1
if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then
if [ -x "/etc/init.d/cryptdisks-early" ]; then
update-rc.d cryptdisks-early defaults >/dev/null || exit 1
fi
fi
# End automatically added section
AnonSec - 2021 | Recode By D7net