From 51ed48941b218eb133dc9c89e154adc730711e1b Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Wed, 7 Nov 2018 19:33:20 -0800 Subject: [PATCH] Continue if docker0 is not present --- net/scripts/remove-docker-interface.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/scripts/remove-docker-interface.sh b/net/scripts/remove-docker-interface.sh index f5dad80322..17f748ba91 100755 --- a/net/scripts/remove-docker-interface.sh +++ b/net/scripts/remove-docker-interface.sh @@ -8,4 +8,4 @@ [[ $(uname) = Linux ]] || exit 1 [[ $USER = root ]] || exit 1 -ip link delete docker0 +ip link delete docker0 || true