✏️ 正在编辑: policykit-1.preinst
路径:
/var/lib/dpkg/info/policykit-1.preinst
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
#!/bin/sh set -e case "$1" in install|upgrade) # avoid attempts to start polkit.service while we are unconfigured and # might not yet have our D-Bus policy in /etc if [ -d /run/systemd/system ]; then systemctl mask --runtime polkit.service fi ;; abort-upgrade) if [ -d /run/systemd/system ]; then systemctl unmask --runtime polkit.service fi ;; esac
💾 保存文件
← 返回文件管理器