✏️ 正在编辑: chrony.prerm
路径:
/var/lib/dpkg/info/chrony.prerm
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
#!/bin/sh # prerm script for chrony # # see: dh_installdeb(1) set -e # targets: remove|upgrade|deconfigure|failed-upgrade case "$1" in remove|upgrade|deconfigure) ;; 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_installinit/11.1.6ubuntu1 if [ -x "/etc/init.d/chrony" ] && [ "$1" = remove ]; then invoke-rc.d chrony stop || exit 1 fi # End automatically added section # Automatically added by dh_installdeb/11.1.6ubuntu1 dpkg-maintscript-helper rm_conffile /etc/apm/event.d/01chrony 2.4.1-3\~ chrony -- "$@" # End automatically added section exit 0
💾 保存文件
← 返回文件管理器