From 2e583cf9abc949ecb79bc414e760c7fc3a2b9596 Mon Sep 17 00:00:00 2001 From: JRGTH Date: Tue, 2 May 2023 09:55:35 -0400 Subject: [PATCH] Add missing spaces for consistency Add missing spaces for jail.conf content consistency. --- usr/local/share/bastille/create.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr/local/share/bastille/create.sh b/usr/local/share/bastille/create.sh index 0014c427..437086bf 100644 --- a/usr/local/share/bastille/create.sh +++ b/usr/local/share/bastille/create.sh @@ -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 }