0x1949 Team - FAZEMRX - MANAGER
Edit File: wp-toolkit-cpanel.postrm
### Copyright 1999-2021. Plesk International GmbH. All rights reserved. [ -z "$WP_TOOLKIT_INSTALLER_DEBUG" ] || set -x [ -z "$WP_TOOLKIT_INSTALLER_STRICT_MODE" ] || set -e remove_files() { # Remove whole WP Toolkit tree because the var directory # could left on the server (contains logs and sqlite database) rm -rf /usr/local/cpanel/3rdparty/wp-toolkit } case "$1" in remove) ;; purge) # Config files (conffiles) must be removed only at "purge" state on Debian-based systems, # because somebody can use "apt remove" to remove package, but this command left config # files at their locations (mostly inside /etc directory). And if somebody will try # to install our package again, then config files will not be unpacked from .deb to # their locations. remove_files ;; upgrade) ;; disappear|failed-upgrade|abort-install|abort-upgrade) ;; *) echo "postrm called with unknown argument \`$1'" >&2 exit 0 ;; esac exit 0