Skip to content

Commit

Permalink
Use systemctl for disable postfix before it removed (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
danilapog authored Nov 23, 2023
1 parent 57fe93d commit bcc392f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/vagrant/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,9 @@ function prepare_vm() {
apt install -y curl gnupg
fi

apt-get remove postfix -y
systemctl stop postfix
systemctl disable postfix
apt-get remove postfix -y
echo "${COLOR_GREEN}☑ PREPAVE_VM: Postfix was removed${COLOR_RESET}"
fi

Expand Down

0 comments on commit bcc392f

Please sign in to comment.