diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/systemd/vyos-hostsd.service | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/systemd/vyos-hostsd.service b/src/systemd/vyos-hostsd.service index 2444f5352..731e570c9 100644 --- a/src/systemd/vyos-hostsd.service +++ b/src/systemd/vyos-hostsd.service @@ -1,6 +1,12 @@ [Unit] Description=VyOS DNS configuration keeper + +# Without this option, lots of default dependencies are added, +# among them network.target, which creates a dependency cycle DefaultDependencies=no + +# Seemingly sensible way to say "as early as the system is ready" +# All vyos-hostsd needs is read/write mounted root After=systemd-remount-fs.service [Service] @@ -13,9 +19,13 @@ SyslogFacility=daemon Restart=on-failure -# Does't work but leave it here +# Does't work in Jessie but leave it here User=root Group=vyattacfg [Install] + +# Note: After= doesn't actually create a dependency, +# it just sets order for the case when both services are to start, +# and without RequiredBy it *does not* set vyos-hostsd to start. RequiredBy=cloud-init-local.service vyos-router.service |