From 8af7127f8f5802592189396a8626589c03689a6e Mon Sep 17 00:00:00 2001 From: Donald Buczek Date: Fri, 20 Jan 2023 11:07:17 +0100 Subject: [PATCH] Remove dhcrelay.service This service is no longer used and nowhere enabled. Not even on "bka", mxrouter starts its dhcrelay service on its own --- install.sh | 1 - misc_systemd_units/dhcrelay.service | 18 ------------------ 2 files changed, 19 deletions(-) delete mode 100644 misc_systemd_units/dhcrelay.service diff --git a/install.sh b/install.sh index 7b9c74c..17e909b 100755 --- a/install.sh +++ b/install.sh @@ -121,7 +121,6 @@ umask 022; install_exec make-automaps/make-automaps "$DESTDIR$usr_sbindir/make-automaps" install_data misc_systemd_units/automount.service "$DESTDIR$systemdunitdir/automount.service" -install_data misc_systemd_units/dhcrelay.service "$DESTDIR$systemdunitdir/dhcrelay.service" install_data misc_systemd_units/enable_overcommit_memory.service "$DESTDIR$systemdunitdir/enable_overcommit_memory.service" install_data misc_systemd_units/startup-tags.service "$DESTDIR$systemdunitdir/startup-tags.service" install_data misc_systemd_units/unbound.service "$DESTDIR$systemdunitdir/unbound.service" diff --git a/misc_systemd_units/dhcrelay.service b/misc_systemd_units/dhcrelay.service deleted file mode 100644 index 1903eef..0000000 --- a/misc_systemd_units/dhcrelay.service +++ /dev/null @@ -1,18 +0,0 @@ -[Unit] - -Description=DHCP relay -Requires=network.target -After=network.target - -ConditionHost=bka.molgen.mpg.de - -[Service] - -ExecStart=/usr/sbin/dhcrelay -4 -d dhcp.molgen.mpg.de -Restart=always -StandardOutput=syslog - -[Install] - -WantedBy=multi-user.target -