Skip to content

Commit

Permalink
Merge pull request #586 from JRGTH/create_fixes
Browse files Browse the repository at this point in the history
Add missing spaces for consistency
  • Loading branch information
cedwards committed May 2, 2023
2 parents 6ec7ae9 + 2e583cf commit cb84068
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions usr/local/share/bastille/create.sh
Original file line number Diff line number Diff line change
Expand Up @@ -104,10 +104,10 @@ validate_ip() {
if echo "${ip}" | grep -qvE '(SLAAC|DHCP|0[.]0[.]0[.]0)'; then
if [ "${ipx_addr}" = "ip4.addr" ]; then
IP4_ADDR="${ip}"
IP4_DEFINITION="${ipx_addr}=${ip};"
IP4_DEFINITION="${ipx_addr} = ${ip};"
else
IP6_ADDR="${ip}"
IP6_DEFINITION="${ipx_addr}=${ip};"
IP6_DEFINITION="${ipx_addr} = ${ip};"
fi
fi
}
Expand Down

0 comments on commit cb84068

Please sign in to comment.