From e5aab6561c4c3f458dfc99e203ab867d9b014039 Mon Sep 17 00:00:00 2001 From: Michael Davidsaver Date: Fri, 26 Mar 2021 11:47:30 -0700 Subject: [PATCH] ci: remove travis debris --- .ci-local/travis-fixup.sh | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100755 .ci-local/travis-fixup.sh diff --git a/.ci-local/travis-fixup.sh b/.ci-local/travis-fixup.sh deleted file mode 100755 index 7d1ea8235..000000000 --- a/.ci-local/travis-fixup.sh +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/sh -set -e -u -x - -env|grep TRAVIS - -[ "$TRAVIS_OS_NAME" = "linux" ] || exit 0 - -# Ensure there is an interface with a (correct) broadcast address -# eg. 'trusty' VMs have interface broadcast address mis-configured -# (why oh why do people insist on setting this explicitly?) - -sudo ip tuntap add dev tap42 mode tap - -sudo ip addr add 192.168.240.1/24 broadcast + dev tap42 - -sudo ip link set dev tap42 up - -# note that this device will be UP but not RUNNING -# so java will see it as not UP since java confuses UP and RUNNING