diff options
| author | Michael Biebl <biebl@debian.org> | 2024-09-01 22:38:46 +0200 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2024-09-01 22:38:46 +0200 |
| commit | e89be0baafbf2359719e7150e374d9e3efde4513 (patch) | |
| tree | aeb24b61eb3ef72efd98bbc7de168df952f95a6b /src/nm-cloud-setup/nm-cloud-setup.service.in | |
| parent | 81f4784c87916c34bda1865ca8aafdff7f8ba55a (diff) | |
| parent | f9bfd1158b8d08d6a5ed3bb7cc1ba7a6455e5201 (diff) | |
Update upstream source from tag 'upstream/1.49.90'
Update to upstream version '1.49.90' with Debian dir 91100697245f76450c5ee1f238e8a69862e0f418
Diffstat (limited to 'src/nm-cloud-setup/nm-cloud-setup.service.in')
| -rw-r--r-- | src/nm-cloud-setup/nm-cloud-setup.service.in | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/nm-cloud-setup/nm-cloud-setup.service.in b/src/nm-cloud-setup/nm-cloud-setup.service.in index e73654d8..ecb70e1c 100644 --- a/src/nm-cloud-setup/nm-cloud-setup.service.in +++ b/src/nm-cloud-setup/nm-cloud-setup.service.in @@ -8,6 +8,17 @@ After=NetworkManager.service Type=oneshot ExecStart=@libexecdir@/nm-cloud-setup +# The service restart gets triggered from dispatcher script +# (pre-up and dhcp4-change actions), possibly ending up with many +# restart requests at the same time (e.g. on initial daemon startup +# on a machine with multiple NICs). The systemd handles multiple +# concurrent restart requests gracefully (the newer requests supersede +# older, which wait for them to finish), but the default limits are way +# too low: 5 restarts in 10 seconds. Raise that high enough for us to +# be on the safe side. +StartLimitIntervalSec=1 +StartLimitBurst=100 + #Environment=NM_CLOUD_SETUP_LOG=TRACE # Cloud providers are disabled by default. You need to |