Website : rimsha.abasa.com
backdoor
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
lib
/
dpkg
/
info
/
Filename :
auditd.postrm
back
Copy
#!/bin/sh # postrm script for auditd # # see: dh_installdeb(1) set -e # summary of how this script can be called: # * <postrm> `remove' # * <postrm> `purge' # * <old-postrm> `upgrade' <new-version> # * <new-postrm> `failed-upgrade' <old-version> # * <new-postrm> `abort-install' # * <new-postrm> `abort-install' <old-version> # * <new-postrm> `abort-upgrade' <old-version> # * <disappearer's-postrm> `disappear' <overwriter> # <overwriter-version> # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. # Automatically added by dh_installinit/13.6ubuntu1 if [ -z "${DPKG_ROOT:-}" ] && [ "$1" = "purge" ] ; then update-rc.d auditd remove >/dev/null fi # End automatically added section # Automatically added by dh_installdeb/13.6ubuntu1 dpkg-maintscript-helper mv_conffile /etc/audisp/plugins.d/af_unix.conf /etc/audit/plugins.d/af_unix.conf 1:3.0\~alpha9-1\~ -- "$@" dpkg-maintscript-helper mv_conffile /etc/audisp/plugins.d/syslog.conf /etc/audit/plugins.d/syslog.conf 1:3.0\~alpha9-1\~ -- "$@" dpkg-maintscript-helper rm_conffile /etc/audisp/audispd.conf 1:3.0\~alpha9-1\~ -- "$@" # End automatically added section # Automatically added by dh_installsystemd/13.6ubuntu1 if [ "$1" = remove ] && [ -d /run/systemd/system ] ; then systemctl --system daemon-reload >/dev/null || true fi # End automatically added section # Automatically added by dh_installsystemd/13.6ubuntu1 if [ "$1" = "remove" ]; then if [ -x "/usr/bin/deb-systemd-helper" ]; then deb-systemd-helper mask 'auditd.service' >/dev/null || true fi fi if [ "$1" = "purge" ]; then if [ -x "/usr/bin/deb-systemd-helper" ]; then deb-systemd-helper purge 'auditd.service' >/dev/null || true deb-systemd-helper unmask 'auditd.service' >/dev/null || true fi fi # End automatically added section case "$1" in purge) rm -rf /var/log/audit rm -f /var/run/audit_events rm -f /etc/audit/audit.rules rm -f /etc/audit/audit.rules.prev ;; remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) ;; *) echo "postrm called with unknown argument \`$1'" >&2 exit 0 ;; esac