#!/bin/bash set -e ## 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 } ## if [ "$1" = "remove" ]; then preuninstall; fi