summaryrefslogtreecommitdiff
path: root/src/systemd
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2020-04-13 12:38:37 +0200
committerChristian Poessinger <christian@poessinger.com>2020-04-13 12:39:13 +0200
commit9c8dac06170eaddd312abb52b0b5724ada4c5ee8 (patch)
treef1deca3fd1fc41a8ba24717d28697bdddfe4aeec /src/systemd
parent8d189ba9e904b6cf28782d4f477764b18aff2e2c (diff)
downloadvyos-1x-9c8dac06170eaddd312abb52b0b5724ada4c5ee8.tar.gz
vyos-1x-9c8dac06170eaddd312abb52b0b5724ada4c5ee8.zip
dhcp-relay: T2185: migrate from SysVinit to systemd
Diffstat (limited to 'src/systemd')
-rw-r--r--src/systemd/isc-dhcp-relay.service14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/systemd/isc-dhcp-relay.service b/src/systemd/isc-dhcp-relay.service
new file mode 100644
index 000000000..ebf4d234e
--- /dev/null
+++ b/src/systemd/isc-dhcp-relay.service
@@ -0,0 +1,14 @@
+[Unit]
+Description=ISC DHCP IPv4 relay
+Documentation=man:dhcrelay(8)
+Wants=network-online.target
+ConditionPathExists=/run/dhcp-relay/dhcp.conf
+After=vyos-router.service
+
+[Service]
+WorkingDirectory=/run/dhcp-relay
+EnvironmentFile=/run/dhcp-relay/dhcp.conf
+ExecStart=/usr/sbin/dhcrelay -d -4 $OPTIONS
+
+[Install]
+WantedBy=multi-user.target