From 1b1d931fe4656cccbcf621913ce3b09a0d89280a Mon Sep 17 00:00:00 2001 From: Emil Renner Berthing Date: Mon, 20 Nov 2017 21:06:47 +0100 Subject: space_server: networkd: use drop-in file for wait-online The trick to overwriting the ExecStart option is to clear it first with ExecStart= --- roles/space_server/files/networkd/no-lan-mgt.conf | 3 +++ .../networkd/systemd-networkd-wait-online.service | 23 ---------------------- roles/space_server/tasks/networkd.yml | 10 ++++++---- 3 files changed, 9 insertions(+), 27 deletions(-) create mode 100644 roles/space_server/files/networkd/no-lan-mgt.conf delete mode 100644 roles/space_server/files/networkd/systemd-networkd-wait-online.service (limited to 'roles') diff --git a/roles/space_server/files/networkd/no-lan-mgt.conf b/roles/space_server/files/networkd/no-lan-mgt.conf new file mode 100644 index 0000000..3309cf0 --- /dev/null +++ b/roles/space_server/files/networkd/no-lan-mgt.conf @@ -0,0 +1,3 @@ +[Service] +ExecStart= +ExecStart=/usr/lib/systemd/systemd-networkd-wait-online --ignore lan --ignore mgt diff --git a/roles/space_server/files/networkd/systemd-networkd-wait-online.service b/roles/space_server/files/networkd/systemd-networkd-wait-online.service deleted file mode 100644 index 0f1e85a..0000000 --- a/roles/space_server/files/networkd/systemd-networkd-wait-online.service +++ /dev/null @@ -1,23 +0,0 @@ -# This file is part of systemd. -# -# systemd is free software; you can redistribute it and/or modify it -# under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation; either version 2.1 of the License, or -# (at your option) any later version. - -[Unit] -Description=Wait for Network to be Configured -Documentation=man:systemd-networkd-wait-online.service(8) -DefaultDependencies=no -Conflicts=shutdown.target -Requisite=systemd-networkd.service -After=systemd-networkd.service -Before=network-online.target - -[Service] -Type=oneshot -ExecStart=/usr/lib/systemd/systemd-networkd-wait-online --ignore lan --ignore mgt -RemainAfterExit=yes - -[Install] -WantedBy=network-online.target diff --git a/roles/space_server/tasks/networkd.yml b/roles/space_server/tasks/networkd.yml index ef97844..ecd5d52 100644 --- a/roles/space_server/tasks/networkd.yml +++ b/roles/space_server/tasks/networkd.yml @@ -25,12 +25,14 @@ notify: - restart networkd -# Unfortunately a drop-in file doesn't seem to work, -# so overwrite the whole service file :/ +- name: Create systemd-networkd-wait-online drop-in directory + file: + dest: '/etc/systemd/system/systemd-networkd-wait-online.service.d' + state: directory - name: Don't wait for lan and mgt interfaces to come online copy: - src: networkd/systemd-networkd-wait-online.service - dest: '/etc/systemd/system/systemd-networkd-wait-online.service' + src: networkd/no-lan-mgt.conf + dest: '/etc/systemd/system/systemd-networkd-wait-online.service.d/no-lan-mgt.conf' - name: Enable systemd-networkd systemd: -- cgit v1.2.1