keep grep errors silent

This commit is contained in:
tschettervictor
2025-04-16 17:52:32 -06:00
committed by GitHub
parent 745f312681
commit deab7e39f7

View File

@@ -121,7 +121,7 @@ check_target_is_stopped() {
get_epair_count() {
for _config in /usr/local/etc/bastille/*.conf; do
local bastille_jailsdir="$(sysrc -f "${_config}" -n bastille_jailsdir)"
_epair_list="$(printf '%s\n' "$( (grep -Eo '(epair[0-9]+|bastille[0-9]+)' ${bastille_jailsdir}/*/jail.conf; ifconfig -g epair | grep -Eo "_bastille[0-9]+$"; ifconfig -g epair | grep -v "bastille" | grep -Eo "e[0-9]+a_") | grep -Eo "[0-9]+")" "${_epair_list}" | sort -u)"
_epair_list="$(printf '%s\n' "$( (grep -Eos '(epair[0-9]+|bastille[0-9]+)' ${bastille_jailsdir}/*/jail.conf; ifconfig -g epair | grep -Eos "_bastille[0-9]+$"; ifconfig -g epair | grep -vs "bastille" | grep -Eos "e[0-9]+a_") | grep -Eos "[0-9]+")" "${_epair_list}" | sort -u)"
done
_epair_count=$(printf '%s' "${_epair_list}" | wc -l | awk '{print $1}')
export _epair_list
@@ -404,4 +404,4 @@ checkyesno() {
return 1
;;
esac
}
}