mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
[fix] Do not exit at first service which can't be stopped
This commit is contained in:
parent
eae6ecc9c0
commit
8362bf2ec0
1 changed files with 3 additions and 3 deletions
|
@ -29,7 +29,7 @@ if [[ "$1" == "True" ]]; then
|
|||
|| echo "Postgrey is already removed" \
|
||||
&& sudo systemctl disable postgrey || true
|
||||
|
||||
sudo systemctl stop spamassassin
|
||||
sudo systemctl stop amavis
|
||||
sudo systemctl stop postgrey
|
||||
sudo systemctl stop spamassassin || true
|
||||
sudo systemctl stop amavis || true
|
||||
sudo systemctl stop postgrey || true
|
||||
fi
|
||||
|
|
Loading…
Add table
Reference in a new issue