芝麻web文件管理V1.00
编辑当前文件:/var/lib/dpkg/info/sg3-utils-udev.postrm
#!/bin/sh # postrm script for sg3-utils-udev # (based on multipath-tools-boot) # # see: dh_installdeb(1) set -e # summary of how this script can be called: # *
`remove' # *
`purge' # *
`upgrade'
# *
`failed-upgrade'
# *
`abort-install' # *
`abort-install'
# *
`abort-upgrade'
# *
`disappear'
#
# for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package case "$1" in remove) if [ -x /usr/sbin/update-initramfs -a -e /etc/initramfs-tools/initramfs.conf ]; then update-initramfs -u fi ;; purge|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) ;; *) echo "postrm called with unknown argument \`$1'" >&2 exit 1 ;; esac # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. exit 0