Add missing spaces for consistency

Add missing spaces for jail.conf  content consistency.
This commit is contained in:
JRGTH
2023-05-02 09:55:35 -04:00
parent 6ec7ae99f0
commit 2e583cf9ab

View File

@@ -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
}