beautysh: re-format
beautysh is enabled in the openbmc-build-scripts on Bash/Zsh/POSIX-sh
files to have a consistent formatting. Re-run the formatter on the
whole repository.
Change-Id: I206feaa6d6aea84cbc16bbd238474c90e5008646
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/hostlogger.dreport b/hostlogger.dreport
index 8555fd0..6670128 100644
--- a/hostlogger.dreport
+++ b/hostlogger.dreport
@@ -11,16 +11,16 @@
LOGS_PATH="/var/lib/obmc/hostlogs"
if [[ -d ${LOGS_PATH} ]]; then
- # Manual flush of the log buffer for all service instances
- INSTANCES="$(systemctl list-units --type=service --state=running --full | \
+ # Manual flush of the log buffer for all service instances
+ INSTANCES="$(systemctl list-units --type=service --state=running --full | \
awk '/hostlogger@/{print $1}')"
- for SVC in ${INSTANCES}; do
- log_info "Flush ${SVC}..."
- if ! systemctl kill --signal SIGUSR1 "${SVC}"; then
- log_warning "Unable to flush ${SVC}"
- fi
- done
+ for SVC in ${INSTANCES}; do
+ log_info "Flush ${SVC}..."
+ if ! systemctl kill --signal SIGUSR1 "${SVC}"; then
+ log_warning "Unable to flush ${SVC}"
+ fi
+ done
- # Copy log directory
- add_copy_file "${LOGS_PATH}" "${DESCRIPTION}"
+ # Copy log directory
+ add_copy_file "${LOGS_PATH}" "${DESCRIPTION}"
fi