Merge "Fix benign epmd@0.0.0.0.socket failure"

This commit is contained in:
Zuul 2019-10-24 01:28:28 +00:00 committed by Gerrit Code Review
commit 8d614d0a42

View File

@ -66,7 +66,12 @@ EOF
sudo systemctl restart epmd.socket epmd.service sudo systemctl restart epmd.socket epmd.service
fi fi
if is_fedora || is_suse; then if is_fedora || is_suse; then
sudo systemctl enable rabbitmq-server # NOTE(jangutter): If rabbitmq is not running (as in a fresh
# install) then rabbit_setuser triggers epmd@0.0.0.0.socket with
# socket activation. This fails the first time and does not get
# cleared. It is benign, but the workaround is to start rabbitmq a
# bit earlier for RPM based distros.
sudo systemctl --now enable rabbitmq-server
fi fi
fi fi
} }