✏️ 正在编辑: zabbix-apache-conf.prerm
路径:
/var/lib/dpkg/info/zabbix-apache-conf.prerm
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
#!/bin/sh -e case "$1" in failed-upgrade|abort-install|abort-upgrade|disappear|upgrade) ;; remove|purge) if [ -f /etc/apache2/conf.d/zabbix ]; then rm -f /etc/apache2/conf.d/zabbix elif [ -f /etc/apache2/conf-available/zabbix.conf ]; then if [ -f /etc/apache2/conf-enabled/zabbix.conf ]; then /usr/sbin/a2disconf zabbix.conf fi rm -f /etc/apache2/conf-available/zabbix.conf fi ;; *) 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. exit 0
💾 保存文件
← 返回文件管理器