whitespaces

This commit is contained in:
Jérémy Lecour 2020-04-02 13:40:48 +02:00 committed by Jérémy Lecour
parent 4c2480906f
commit 5432c2eee8

20
bkctld
View file

@ -36,17 +36,17 @@ case "${subcommand}" in
"${LIBDIR}/bkctld-${subcommand}" "${jail}" "${option}" "${LIBDIR}/bkctld-${subcommand}" "${jail}" "${option}"
;; ;;
"start" | "stop" | "reload" | "restart" | "sync" | "update" | "remove" | "firewall") "start" | "stop" | "reload" | "restart" | "sync" | "update" | "remove" | "firewall")
if [ "${jail}" = "all" ]; then if [ "${jail}" = "all" ]; then
"${LIBDIR}/bkctld-list"|xargs --no-run-if-empty --max-args=1 --max-procs=0 "${LIBDIR}/bkctld-${subcommand}" "${LIBDIR}/bkctld-list"|xargs --no-run-if-empty --max-args=1 --max-procs=0 "${LIBDIR}/bkctld-${subcommand}"
else else
"${LIBDIR}/bkctld-${subcommand}" "${jail}" "${LIBDIR}/bkctld-${subcommand}" "${jail}"
fi fi
;; ;;
"status") "status")
if [ -z "${jail}" ]; then if [ -z "${jail}" ]; then
"${LIBDIR}/bkctld-list"|xargs --no-run-if-empty --max-args=1 "${LIBDIR}/bkctld-${subcommand}" "${LIBDIR}/bkctld-list"|xargs --no-run-if-empty --max-args=1 "${LIBDIR}/bkctld-${subcommand}"
else else
"${LIBDIR}/bkctld-${subcommand}" "${jail}" "${LIBDIR}/bkctld-${subcommand}" "${jail}"
fi fi
;; ;;
esac esac