Skip to content

Commit

Permalink
Update network.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
kroese authored Oct 14, 2024
1 parent 1205e21 commit 407ce1c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/network.sh
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ configureNAT() {

NET_OPTS+=",script=no,downscript=no"

! configureDNS && return 1
configureDNS || return 1

return 0
}
Expand Down Expand Up @@ -375,7 +375,7 @@ if [[ "$DHCP" == [Yy1]* ]]; then
fi

# Configure for macvtap interface
! configureDHCP && exit 20
configureDHCP || exit 20

else

Expand Down Expand Up @@ -404,7 +404,7 @@ else
if [[ "${NETWORK,,}" == "user"* ]]; then

# Configure for usermode networking (slirp)
! configureUser && exit 24
configureUser || exit 24

fi

Expand Down

0 comments on commit 407ce1c

Please sign in to comment.