<div dir="ltr"><div>I see that with the following commit, 'StartLimitInterval' is aliased to 'StartLimitIntervalSec':<br><br><a href="https://github.com/systemd/systemd/commit/f0367da7d1a61ad698a55d17b5c28ddce0dc265a#diff-b3e16bf39e5d7ab233077b9b1dafb095">https://github.com/systemd/systemd/commit/f0367da7d1a61ad698a55d17b5c28ddce0dc265a#diff-b3e16bf39e5d7ab233077b9b1dafb095</a><br><br>This change should be in systemd-230.<br><br>However, using 'StartLimitIntervalSec` in systemd-233 doesn't appear to be working and the property is being logged as an "Unknown lvalue".<br><br>I've built systemd-233 from source, and confirmed the source includes the above alias change, but I cannot set a 'StartLimitIntervalSec' property. The old 'StartLimitInterval' value does work.<br><br></div><div>All the documentation suggests 'StartLimitIntervalSec' should now be working/accepted.<br></div><div><br>What am I missing here?<br><br>Many thanks<br>Neil<br><br>This is the version, 233:<br>```<br>rpi22:~ # systemctl --version<br>systemd 233<br>-PAM -AUDIT -SELINUX -IMA -APPARMOR -SMACK -SYSVINIT -UTMP -LIBCRYPTSETUP -GCRYPT -GNUTLS -ACL -XZ -LZ4 -SECCOMP +BLKID -ELFUTILS +KMOD -IDN default-hierarchy=hybrid<br>```<br><br>And I've got a service where 'StartLimitInterval' has been renamed to 'StartLimitIntervalSec':<br>```<br>rpi22:~ # cat /usr/lib/systemd/system/smbd.service<br>[Unit]<br>Description=Samba SMB Daemon<br>After=network.target samba-config.service<br>ConditionPathExists=!/storage/.cache/services/samba.disabled<br>ConditionPathExists=/run/samba/smb.conf<br>Requires=samba-config.service<br><br>[Service]<br>Type=forking<br>PIDFile=/run/samba/smbd.pid<br>LimitNOFILE=16384<br>ExecStartPre=/usr/lib/samba/smbd-config<br>ExecStart=/usr/sbin/smbd<br>ExecReload=/bin/kill -HUP $MAINPID<br>TimeoutStopSec=1s<br>Restart=always<br>RestartSec=2<br>StartLimitIntervalSec=0<br><br>[Install]<br>WantedBy=multi-user.target<br>```<br><br>However 'StartLimitIntervalSec' isn't accepted as valid, whereas the "old" 'StartLimitInterval' continues to work as it should - this is the error with 'StartLimitIntervalSec':<br>```<br>rpi22:~ # journalctl -a|grep StartLimitIntervalSec<br>Jul 11 01:29:17 rpi22 systemd[1]: /usr/lib/systemd/system/smbd.service:18: Unknown lvalue 'StartLimitIntervalSec' in section 'Service'<br>```<br></div></div>