[fix] Typo in email-legacy hook

This commit is contained in:
kload 2015-10-31 14:23:38 +01:00
parent 8abb523749
commit c7310e6b6e

View file

@ -12,18 +12,14 @@ sudo yunohost service add memcached \
|| echo "Memcached is already listed in services"
# Remove previous email services
sudo yunohost service disable spamassassin \
sudo yunohost service remove spamassassin \
|| 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" \
&& systemctl disable spamassassin || true
&& sudo systemctl disable amavis || true
sudo yunohost service disable postgrey \
sudo yunohost service remove postgrey \
|| echo "Postgrey is already removed" \
&& systemctl disable postgrey || true
sudo yunohost service disable postgrey \
&& sudo yunohost service remove amavis \
|| echo "Amavis is already removed"
&& sudo systemctl disable postgrey || true