the crontabs from sssd users are ignored by crond with the following message:<br />
cron:Sep 17 10:28:22 mymachine crond[958]: (ldapuserX) ORPHAN (no passwd entry)<br />
<br />
This is because when crond.service is started, sssd.service is not yet. There's no ordering between the 2 services.<br />
<br />
If I modify /usr/lib/systemd/system/crond.service in order to make it start after sssd:<br />
...<br />
After=syslog.target auditd.service systemd-user-sessions.service time-sync.target sssd.service<br />
...<br />
<br />
Restart - no more issue.<br />
<br />
This is probably an ugly patch, I'm not an systemd expert.
↧