芝麻web文件管理V1.00
编辑当前文件:/var/lib/dpkg/info/polkitd.postinst
#!/bin/sh # postinst script for polkitd # # see: dh_installdeb(1) set -e # summary of how this script can be called: # *
`configure'
# *
`abort-upgrade'
# *
`abort-remove' `in-favour'
#
# *
`abort-remove' # *
`abort-deconfigure' `in-favour' #
`removing' #
# for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package set_perms() { USER=$1 GROUP=$2 MODE=$3 FILE=$4 if ! dpkg-statoverride --list $FILE > /dev/null 2>&1; then chown $USER:$GROUP $FILE chmod $MODE $FILE fi } case "$1" in configure) set_perms root root 700 /var/lib/polkit-1 set_perms root root 700 /etc/polkit-1/localauthority set_perms root root 4755 /usr/libexec/polkit-agent-helper-1 ;; 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_installsystemd/13.6ubuntu1 if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then if [ -z "${DPKG_ROOT:-}" ] && [ -d /run/systemd/system ]; then systemctl --system daemon-reload >/dev/null || true if [ -n "$2" ]; then deb-systemd-invoke try-restart 'polkit.service' >/dev/null || true fi fi fi # End automatically added section # This can be removed after bullseye is released as stable for d in /etc/polkit-1/nullbackend.conf.d; do if [ -d "$d" ]; then rmdir --ignore-fail-on-non-empty "$d" fi done exit 0