rework blank lines again

This commit is contained in:
tschettervictor
2025-04-29 21:58:15 -06:00
parent 046cf87e79
commit b73639d8b6
16 changed files with 0 additions and 52 deletions

View File

@@ -67,7 +67,6 @@ fi
# Notify message on error, and continue to next jail
error_continue() {
error_notify "$@"
echo ""
# shellcheck disable=SC2104
continue
}
@@ -209,10 +208,8 @@ set_target() {
TARGET="$(list_jail_priority "${TARGET}" | sort -k2 -nr | awk '{print $1}')"
JAILS="$(list_jail_priority "${TARGET}" | sort -k2 -nr | awk '{print $1}')"
fi
_FIRST_JAIL="$(echo ${JAILS} | awk '{print $1}')"
export TARGET
export JAILS
export _FIRST_JAIL
fi
}
@@ -239,10 +236,8 @@ set_target_single() {
fi
TARGET="${_TARGET}"
JAILS="${_TARGET}"
_FIRST_JAIL="$(echo ${JAILS} | awk '{print $1}')"
export TARGET
export JAILS
export _FIRST_JAIL
}
target_all_jails() {
@@ -258,9 +253,7 @@ target_all_jails() {
elif [ "${_order}" = "reverse" ]; then
JAILS="$(list_jail_priority "${JAILS}" | sort -k2 -nr | awk '{print $1}')"
fi
_FIRST_JAIL="$(echo ${JAILS} | awk '{print $1}')"
export JAILS
export _FIRST_JAIL
}
update_fstab() {