From c4d81a249a8c2616cbcaf9249244e3c911aee8e5 Mon Sep 17 00:00:00 2001 From: m0duspwnens Date: Fri, 21 Jul 2023 16:36:03 -0400 Subject: [PATCH] remove /24 from DOCKERBIP --- setup/so-functions | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup/so-functions b/setup/so-functions index a088b7f8a..d5845363a 100755 --- a/setup/so-functions +++ b/setup/so-functions @@ -1484,9 +1484,9 @@ create_global() { if [ -z "$DOCKERNET" ]; then DOCKERNET=172.17.1.0 - DOCKERBIP=$(echo $DOCKERNET | awk -F'.' '{print $1,$2,$3,1}' OFS='.')/24 + DOCKERBIP=$(echo $DOCKERNET | awk -F'.' '{print $1,$2,$3,1}' OFS='.') else - DOCKERBIP=$(echo $DOCKERNET | awk -F'.' '{print $1,$2,$3,1}' OFS='.')/24 + DOCKERBIP=$(echo $DOCKERNET | awk -F'.' '{print $1,$2,$3,1}' OFS='.') fi if [ -f "$global_pillar_file" ]; then