Comment 5 for bug 1723350

Revision history for this message
Simon Elmir (nerd65536) wrote : Re: sssd offline on boot, stays offline forever (artful, bionic)

Also affects Ubuntu Bionic (18.04)

A nicer workaround, for those using NetworkManager & systemd would be to tell sssd to try going online when an interface comes up.

Create /etc/NetworkManager/dispatcher.d/sssd_notify with the contents:
#!/bin/bash
case "$2" in
  up|vpn-up) systemctl kill --signal=USR2 sssd.service; ;;
esac