]> git.ipfire.org Git - thirdparty/strongswan.git/commitdiff
testing: Remove unnecessary workaround for DHCP
authorTobias Brunner <tobias@strongswan.org>
Wed, 13 Aug 2025 11:52:20 +0000 (13:52 +0200)
committerTobias Brunner <tobias@strongswan.org>
Thu, 18 Sep 2025 09:12:22 +0000 (11:12 +0200)
testing/hosts/moon/etc/rc.local [deleted file]

diff --git a/testing/hosts/moon/etc/rc.local b/testing/hosts/moon/etc/rc.local
deleted file mode 100755 (executable)
index 8649a2b..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh -e
-#
-# rc.local
-#
-# This script is executed at the end of each multiuser runlevel.
-# Make sure that the script will "exit 0" on success or any other
-# value on error.
-#
-# In order to enable or disable this script just change the execution
-# bits.
-#
-
-# Disable checksum offloading on eth1 because it does not currently work with
-# libvirt and isc-dhcp-server running on venus, see [1]
-# [1] - https://bugs.mageia.org/show_bug.cgi?id=1243
-
-ethtool --offload eth1 tx off >/dev/null 2>&1
-ethtool --offload eth1 rx off >/dev/null 2>&1
-
-exit 0