From f447489707812643ee918266f99ca1ac82a408af Mon Sep 17 00:00:00 2001 From: Florence Blanc-Renaud Date: Mar 07 2017 19:06:35 +0000 Subject: ipa systemd unit should define Wants=network instead of Requires=network The file ipa.service defines Requires=network.target which means that ipa stack will be restarted each time the network stack is restarted. This is not needed, and Wants=network.target will be sufficient. https://fedorahosted.org/freeipa/ticket/6723 Reviewed-By: Tomas Krizek --- diff --git a/init/systemd/ipa.service.in b/init/systemd/ipa.service.in index ceb360c..a872ad1 100644 --- a/init/systemd/ipa.service.in +++ b/init/systemd/ipa.service.in @@ -1,6 +1,6 @@ [Unit] Description=Identity, Policy, Audit -Requires=network.target +Wants=network.target Wants=gssproxy.service After=network.target