mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
[fix] Typo in email-legacy hook
This commit is contained in:
parent
8abb523749
commit
c7310e6b6e
1 changed files with 6 additions and 10 deletions
|
@ -12,18 +12,14 @@ sudo yunohost service add memcached \
|
||||||
|| echo "Memcached is already listed in services"
|
|| echo "Memcached is already listed in services"
|
||||||
|
|
||||||
# Remove previous email services
|
# Remove previous email services
|
||||||
sudo yunohost service disable spamassassin \
|
sudo yunohost service remove spamassassin \
|
||||||
|| echo "Spamassassin is already removed" \
|
|| echo "Spamassassin is already removed" \
|
||||||
&& systemctl disable spamassassin || true
|
&& sudo systemctl disable spamassassin || true
|
||||||
|
|
||||||
sudo yunohost service disable amavis \
|
sudo yunohost service remove amavis \
|
||||||
|| echo "Amavis is already removed" \
|
|| echo "Amavis is already removed" \
|
||||||
&& systemctl disable spamassassin || true
|
&& sudo systemctl disable amavis || true
|
||||||
|
|
||||||
sudo yunohost service disable postgrey \
|
sudo yunohost service remove postgrey \
|
||||||
|| echo "Postgrey is already removed" \
|
|| echo "Postgrey is already removed" \
|
||||||
&& systemctl disable postgrey || true
|
&& sudo systemctl disable postgrey || true
|
||||||
|
|
||||||
sudo yunohost service disable postgrey \
|
|
||||||
&& sudo yunohost service remove amavis \
|
|
||||||
|| echo "Amavis is already removed"
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue