0x1949 Team - FAZEMRX - MANAGER
Edit File: cpanel-exim.prerm
#!/bin/bash set -e ## <asset scriplets/preun> set -e if [ -z "$INIT_D" ]; then INIT_D=0; fi; if [ -z "$RHEL" ]; then RHEL=0; fi; preuninstall() { if [ "$INIT_D" = "1" ]; then /usr/bin/systemctl stop exim.service ||: /usr/bin/systemctl disable exim.service ||: fi } ## </asset> if [ "$1" = "remove" ]; then preuninstall; fi