diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2012-10-05 11:32:28 +0200 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2012-10-05 11:32:28 +0200 |
commit | 41def4c27d8eb859ace91c00eefa915dbb4c38fc (patch) | |
tree | d128906ed2071c85d10f3c2a466f90062eee27c4 /configs/releng/root-image/etc/systemd/system/dhcpcd.service | |
parent | d2e69f4a4a54cf63e57c672919a2e714eb601d36 (diff) | |
download | archiso32-41def4c27d8eb859ace91c00eefa915dbb4c38fc.tar.xz |
Run dhcpcd on all devices
As we did with initscripts, run dhcpcd on all devices and not just eth0.
Signed-off-by: Pierre Schmitz <pierre@archlinux.de>
Diffstat (limited to 'configs/releng/root-image/etc/systemd/system/dhcpcd.service')
-rw-r--r-- | configs/releng/root-image/etc/systemd/system/dhcpcd.service | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/configs/releng/root-image/etc/systemd/system/dhcpcd.service b/configs/releng/root-image/etc/systemd/system/dhcpcd.service new file mode 100644 index 0000000..dd030d5 --- /dev/null +++ b/configs/releng/root-image/etc/systemd/system/dhcpcd.service @@ -0,0 +1,13 @@ +[Unit] +Description=dhcpcd on all interfaces +Wants=network.target +Before=network.target + +[Service] +Type=forking +PIDFile=/run/dhcpcd.pid +ExecStart=/sbin/dhcpcd -A -b -q +ExecStop=/sbin/dhcpcd -k + +[Install] +WantedBy=multi-user.target |