Skip to content

Commit d182bff

Browse files
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. Signed-off-by: Patrick Williams <[email protected]> Change-Id: I8c4f46426087652161d7cbeab489bfe32d25f17e
1 parent bd28f02 commit d182bff

File tree

2 files changed

+38
-40
lines changed

2 files changed

+38
-40
lines changed

obmcutil

+32-34
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ osstate,power,poweroff,poweron,state,status,hostrebootoff,hostrebooton,recoveryo
77
bmcrebootoff, bmcrebooton, listbootblock listlogs showlog deletelogs, stopofftargets"
88

99
USAGE="Usage: obmcutil [-h] [--wait] [--verbose] [--id=<INSTANCE_ID>]
10-
{$OPTS}"
10+
{$OPTS}"
1111

1212
INTERFACE_ROOT=xyz.openbmc_project
1313
STATE_INTERFACE=$INTERFACE_ROOT.State
@@ -41,7 +41,7 @@ G_VERBOSE=
4141
# Instance id, default 0
4242
G_INSTANCE_ID="0"
4343

44-
print_help ()
44+
function print_help()
4545
{
4646
echo "$USAGE"
4747
echo ""
@@ -86,7 +86,7 @@ print_help ()
8686
exit 0
8787
}
8888

89-
run_timeout ()
89+
function run_timeout()
9090
{
9191
local timeout="$1"; shift
9292
local cmd="$*"
@@ -121,15 +121,15 @@ run_timeout ()
121121

122122
if ! wait $wait_child; then
123123
echo "Unable to confirm '$G_ORIG_CMD' success" \
124-
"within timeout period (${timeout}s)"
124+
"within timeout period (${timeout}s)"
125125
fi
126126

127127
if [ -n "$verbose_child" ]; then
128128
kill $verbose_child
129129
fi
130130
}
131131

132-
run_cmd ()
132+
function run_cmd()
133133
{
134134
local cmd="$*";
135135

@@ -140,44 +140,44 @@ run_cmd ()
140140
fi
141141
}
142142

143-
set_property ()
143+
function set_property()
144144
{
145145
run_cmd busctl set-property "$@"
146146
}
147147

148-
get_property ()
148+
function get_property()
149149
{
150150
G_WAIT=""
151151
run_cmd busctl get-property "$@"
152152
}
153153

154-
state_query ()
154+
function state_query()
155155
{
156156
local state
157157
state=$(get_property "$@" | cut -d '"' -f2)
158158
printf "%-20s: %s\n" "$4" "$state"
159159
}
160160

161-
print_usage_err ()
161+
function print_usage_err()
162162
{
163163
echo "ERROR: $1" >&2
164164
echo "$USAGE"
165165
exit 1
166166
}
167167

168-
mask_systemd_target ()
168+
function mask_systemd_target()
169169
{
170170
target="$*"
171171
systemctl mask "$target"
172172
}
173173

174-
unmask_systemd_target ()
174+
function unmask_systemd_target()
175175
{
176176
target="$*"
177177
systemctl unmask "$target"
178178
}
179179

180-
disable_bmc_reboot ()
180+
function disable_bmc_reboot()
181181
{
182182
dir="/run/systemd/system/"
183183
file="reboot-guard.conf"
@@ -189,7 +189,7 @@ disable_bmc_reboot ()
189189
done
190190
}
191191

192-
enable_bmc_reboot ()
192+
function enable_bmc_reboot()
193193
{
194194
dir="/run/systemd/system/"
195195
file="reboot-guard.conf"
@@ -202,7 +202,7 @@ enable_bmc_reboot ()
202202
}
203203

204204
# will write blocking errors to stdout
205-
check_boot_block_errors ()
205+
function check_boot_block_errors()
206206
{
207207
# array of boot block objects
208208
blockArray=()
@@ -244,7 +244,7 @@ check_boot_block_errors ()
244244
}
245245

246246
# helper function to check for boot block errors and notify user
247-
check_and_warn_boot_block()
247+
function check_and_warn_boot_block()
248248
{
249249
blockingErrors=$(check_boot_block_errors)
250250
if [ -n "$blockingErrors" ]; then
@@ -256,36 +256,36 @@ check_and_warn_boot_block()
256256
}
257257

258258
# list all phosphor-logging entries
259-
list_logs()
259+
function list_logs()
260260
{
261261
# Look for any objects under logging that implement the
262262
# xyz.openbmc_project.Logging.Entry
263263
busctl -j call xyz.openbmc_project.ObjectMapper \
264-
/xyz/openbmc_project/object_mapper \
265-
xyz.openbmc_project.ObjectMapper \
266-
GetSubTreePaths sias "/xyz/openbmc_project/logging/" 0 1 \
267-
xyz.openbmc_project.Logging.Entry
264+
/xyz/openbmc_project/object_mapper \
265+
xyz.openbmc_project.ObjectMapper \
266+
GetSubTreePaths sias "/xyz/openbmc_project/logging/" 0 1 \
267+
xyz.openbmc_project.Logging.Entry
268268
}
269269

270270
# display input log details
271-
show_log()
271+
function show_log()
272272
{
273273
busctl -j call xyz.openbmc_project.Logging \
274-
"$1" \
275-
org.freedesktop.DBus.Properties \
276-
GetAll s xyz.openbmc_project.Logging.Entry
274+
"$1" \
275+
org.freedesktop.DBus.Properties \
276+
GetAll s xyz.openbmc_project.Logging.Entry
277277
}
278278

279279
# delete all phosphor-logging entries
280-
delete_logs()
280+
function delete_logs()
281281
{
282282
busctl call xyz.openbmc_project.Logging \
283-
/xyz/openbmc_project/logging \
284-
xyz.openbmc_project.Collection.DeleteAll DeleteAll
283+
/xyz/openbmc_project/logging \
284+
xyz.openbmc_project.Collection.DeleteAll DeleteAll
285285
}
286286

287287
# stop all targets associated with powering off a system
288-
stop_off_targets()
288+
function stop_off_targets()
289289
{
290290
systemctl stop \
291291
@@ -297,7 +297,7 @@ stop_off_targets()
297297
298298
}
299299

300-
handle_cmd ()
300+
function handle_cmd()
301301
{
302302
case "$1" in
303303
chassisoff)
@@ -388,14 +388,12 @@ handle_cmd ()
388388
OBJECT=/org/openbmc/control/power0
389389
SERVICE=$(mapper get-service $OBJECT)
390390
INTERFACE=org.openbmc.control.Power
391-
for property in pgood state pgood_timeout
392-
do
391+
for property in pgood state pgood_timeout; do
393392
# get_property can potentially return several
394393
# different formats of values, so we do the parsing outside
395394
# of get_property depending on the query. These queries
396395
# return 'i VALUE' formatted strings.
397-
STATE=$(get_property "$SERVICE" $OBJECT $INTERFACE $property \
398-
| sed 's/i[ ^I]*//')
396+
STATE=$(get_property "$SERVICE" "$OBJECT" "$INTERFACE" "$property" | sed 's/i[ ^I]*//')
399397
printf "%s = %s\n" $property "$STATE"
400398
done
401399
;;
@@ -417,7 +415,7 @@ handle_cmd ()
417415
PROPERTY=AutoReboot
418416
VALUE=false
419417
set_property "$SERVICE" $OBJECT $INTERFACE $PROPERTY "b" $VALUE
420-
;;
418+
;;
421419
hostrebooton)
422420
OBJECT=$CONTROL_OBJECT/host$G_INSTANCE_ID/auto_reboot
423421
SERVICE=$(mapper get-service $OBJECT)

scripts/host-reboot

+6-6
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@
88

99
set -euo pipefail
1010

11-
get_reboot_count()
11+
function get_reboot_count()
1212
{
1313
busctl get-property xyz.openbmc_project.State.Host"$1" \
1414
/xyz/openbmc_project/state/host"$1" \
1515
xyz.openbmc_project.Control.Boot.RebootAttempts AttemptsLeft \
1616
| cut -d ' ' -f2
1717
}
1818

19-
get_restart_cause()
19+
function get_restart_cause()
2020
{
2121
busctl get-property xyz.openbmc_project.State.Host"$1" \
2222
/xyz/openbmc_project/state/host"$1" \
@@ -25,13 +25,13 @@ get_restart_cause()
2525
}
2626

2727
# host instance id is input parameter to function
28-
host_quiesce()
28+
function host_quiesce()
2929
{
3030
systemctl start obmc-host-quiesce@"$1".target
3131
}
3232

3333
# host instance id is input parameter to function
34-
host_reboot()
34+
function host_reboot()
3535
{
3636
systemctl start obmc-host-startmin@"$1".target
3737
}
@@ -54,12 +54,12 @@ host_instance=$1
5454
reboot_count=$(get_reboot_count "$host_instance")
5555
restart_cause=$(get_restart_cause "$host_instance")
5656
if [ "$reboot_count" -eq 0 ] && \
57-
[ "$restart_cause" == "xyz.openbmc_project.State.Host.RestartCause.HostCrash" ];
57+
[ "$restart_cause" == "xyz.openbmc_project.State.Host.RestartCause.HostCrash" ];
5858
then
5959
echo "reboot count is 0 and host crashed, go to host quiesce"
6060
host_quiesce "$host_instance"
6161
else
6262
echo "reboot count ($reboot_count) is greater then 0 or host did not" \
63-
"crash so reboot host"
63+
"crash so reboot host"
6464
host_reboot "$host_instance"
6565
fi

0 commit comments

Comments
 (0)