芝麻web文件管理V1.00
编辑当前文件:/var/lib/dpkg/info/landscape-common.prerm
#!/bin/sh # prerm script for landscape-common # # see: dh_installdeb(1) set -e # summary of how this script can be called: # *
`remove' # *
`upgrade'
# *
`failed-upgrade'
# *
`remove' `in-favour'
# *
`deconfigure' `in-favour' #
`removing' #
# for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package case "$1" in remove|upgrade|deconfigure) rm -f /etc/update-motd.d/50-landscape-sysinfo 2>/dev/null || true update-motd 2>/dev/null || true rm -f /etc/profile.d/landscape-sysinfo.sh 2>/dev/null || true ;; failed-upgrade) ;; *) echo "prerm 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_python3 if which py3clean >/dev/null 2>&1; then py3clean -p landscape-common:amd64 else dpkg -L landscape-common:amd64 | perl -ne 's,/([^/]*)\.py$,/__pycache__/\1.*, or next; unlink $_ or die $! foreach glob($_)' find /usr/lib/python3/dist-packages/ -type d -name __pycache__ -empty -print0 | xargs --null --no-run-if-empty rmdir fi # End automatically added section exit 0