From 5432c2eee89ca9909fd362fb6ab3bd816a62a31a Mon Sep 17 00:00:00 2001 From: Jeremy Lecour Date: Thu, 2 Apr 2020 13:40:48 +0200 Subject: [PATCH] whitespaces --- bkctld | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/bkctld b/bkctld index 4fc0e4d..cc35ea2 100755 --- a/bkctld +++ b/bkctld @@ -36,17 +36,17 @@ case "${subcommand}" in "${LIBDIR}/bkctld-${subcommand}" "${jail}" "${option}" ;; "start" | "stop" | "reload" | "restart" | "sync" | "update" | "remove" | "firewall") - if [ "${jail}" = "all" ]; then - "${LIBDIR}/bkctld-list"|xargs --no-run-if-empty --max-args=1 --max-procs=0 "${LIBDIR}/bkctld-${subcommand}" - else - "${LIBDIR}/bkctld-${subcommand}" "${jail}" - fi + if [ "${jail}" = "all" ]; then + "${LIBDIR}/bkctld-list"|xargs --no-run-if-empty --max-args=1 --max-procs=0 "${LIBDIR}/bkctld-${subcommand}" + else + "${LIBDIR}/bkctld-${subcommand}" "${jail}" + fi ;; "status") - if [ -z "${jail}" ]; then - "${LIBDIR}/bkctld-list"|xargs --no-run-if-empty --max-args=1 "${LIBDIR}/bkctld-${subcommand}" - else - "${LIBDIR}/bkctld-${subcommand}" "${jail}" - fi + if [ -z "${jail}" ]; then + "${LIBDIR}/bkctld-list"|xargs --no-run-if-empty --max-args=1 "${LIBDIR}/bkctld-${subcommand}" + else + "${LIBDIR}/bkctld-${subcommand}" "${jail}" + fi ;; esac