I am trying to find what is the limitation of the RestartSec
time in systemd. I know that the default time is 100ms, and I have changed this time in system.config to 60ms and it works but is there limit for how much I can go down in time? Does anyone knows what is the limitation there?
an example to my service:
[Unit]
Description="test"
[Service]
ExecStart=/home/test.sh
Type=simple
Restart=on-failure
RestartSec=60ms
[Install]
WantedBy=default.target
Thanks.