Files
LEMPer/scripts/remove_mailer.sh
Edi Septriyanto 49f35222ee Remove mailer init
2021-12-18 13:17:55 +07:00

18 lines
484 B
Bash
Executable File

#!/usr/bin/env bash
# Mailer Uninstaller
# Min. Requirement : GNU/Linux Ubuntu 18.04
# Last Build : 18/12/2021
# Author : MasEDI.Net (me@masedi.net)
# Since Version : 1.0.0
# Include helper functions.
if [[ "$(type -t run)" != "function" ]]; then
BASE_DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )
# shellcheck disable=SC1091
. "${BASE_DIR}/helper.sh"
fi
# Make sure only root can run this installer script.
requires_root