@@ -7,7 +7,7 @@ osstate,power,poweroff,poweron,state,status,hostrebootoff,hostrebooton,recoveryo
7
7
bmcrebootoff, bmcrebooton, listbootblock listlogs showlog deletelogs, stopofftargets"
8
8
9
9
USAGE=" Usage: obmcutil [-h] [--wait] [--verbose] [--id=<INSTANCE_ID>]
10
- {$OPTS }"
10
+ {$OPTS }"
11
11
12
12
INTERFACE_ROOT=xyz.openbmc_project
13
13
STATE_INTERFACE=$INTERFACE_ROOT .State
@@ -41,7 +41,7 @@ G_VERBOSE=
41
41
# Instance id, default 0
42
42
G_INSTANCE_ID=" 0"
43
43
44
- print_help ()
44
+ function print_help ()
45
45
{
46
46
echo " $USAGE "
47
47
echo " "
@@ -86,7 +86,7 @@ print_help ()
86
86
exit 0
87
87
}
88
88
89
- run_timeout ()
89
+ function run_timeout ()
90
90
{
91
91
local timeout=" $1 " ; shift
92
92
local cmd=" $* "
@@ -121,15 +121,15 @@ run_timeout ()
121
121
122
122
if ! wait $wait_child ; then
123
123
echo " Unable to confirm '$G_ORIG_CMD ' success" \
124
- " within timeout period (${timeout} s)"
124
+ " within timeout period (${timeout} s)"
125
125
fi
126
126
127
127
if [ -n " $verbose_child " ]; then
128
128
kill $verbose_child
129
129
fi
130
130
}
131
131
132
- run_cmd ()
132
+ function run_cmd ()
133
133
{
134
134
local cmd=" $* " ;
135
135
@@ -140,44 +140,44 @@ run_cmd ()
140
140
fi
141
141
}
142
142
143
- set_property ()
143
+ function set_property ()
144
144
{
145
145
run_cmd busctl set-property " $@ "
146
146
}
147
147
148
- get_property ()
148
+ function get_property ()
149
149
{
150
150
G_WAIT=" "
151
151
run_cmd busctl get-property " $@ "
152
152
}
153
153
154
- state_query ()
154
+ function state_query ()
155
155
{
156
156
local state
157
157
state=$( get_property " $@ " | cut -d ' "' -f2)
158
158
printf " %-20s: %s\n" " $4 " " $state "
159
159
}
160
160
161
- print_usage_err ()
161
+ function print_usage_err ()
162
162
{
163
163
echo " ERROR: $1 " >&2
164
164
echo " $USAGE "
165
165
exit 1
166
166
}
167
167
168
- mask_systemd_target ()
168
+ function mask_systemd_target ()
169
169
{
170
170
target=" $* "
171
171
systemctl mask " $target "
172
172
}
173
173
174
- unmask_systemd_target ()
174
+ function unmask_systemd_target ()
175
175
{
176
176
target=" $* "
177
177
systemctl unmask " $target "
178
178
}
179
179
180
- disable_bmc_reboot ()
180
+ function disable_bmc_reboot ()
181
181
{
182
182
dir=" /run/systemd/system/"
183
183
file=" reboot-guard.conf"
@@ -189,7 +189,7 @@ disable_bmc_reboot ()
189
189
done
190
190
}
191
191
192
- enable_bmc_reboot ()
192
+ function enable_bmc_reboot ()
193
193
{
194
194
dir=" /run/systemd/system/"
195
195
file=" reboot-guard.conf"
@@ -202,7 +202,7 @@ enable_bmc_reboot ()
202
202
}
203
203
204
204
# will write blocking errors to stdout
205
- check_boot_block_errors ()
205
+ function check_boot_block_errors ()
206
206
{
207
207
# array of boot block objects
208
208
blockArray=()
@@ -244,7 +244,7 @@ check_boot_block_errors ()
244
244
}
245
245
246
246
# helper function to check for boot block errors and notify user
247
- check_and_warn_boot_block ()
247
+ function check_and_warn_boot_block()
248
248
{
249
249
blockingErrors=$( check_boot_block_errors)
250
250
if [ -n " $blockingErrors " ]; then
@@ -256,36 +256,36 @@ check_and_warn_boot_block()
256
256
}
257
257
258
258
# list all phosphor-logging entries
259
- list_logs ()
259
+ function list_logs()
260
260
{
261
261
# Look for any objects under logging that implement the
262
262
# xyz.openbmc_project.Logging.Entry
263
263
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
268
268
}
269
269
270
270
# display input log details
271
- show_log ()
271
+ function show_log()
272
272
{
273
273
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
277
277
}
278
278
279
279
# delete all phosphor-logging entries
280
- delete_logs ()
280
+ function delete_logs()
281
281
{
282
282
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
285
285
}
286
286
287
287
# stop all targets associated with powering off a system
288
- stop_off_targets ()
288
+ function stop_off_targets()
289
289
{
290
290
systemctl stop \
291
291
@@ -297,7 +297,7 @@ stop_off_targets()
297
297
298
298
}
299
299
300
- handle_cmd ()
300
+ function handle_cmd ()
301
301
{
302
302
case " $1 " in
303
303
chassisoff)
@@ -388,14 +388,12 @@ handle_cmd ()
388
388
OBJECT=/org/openbmc/control/power0
389
389
SERVICE=$( mapper get-service $OBJECT )
390
390
INTERFACE=org.openbmc.control.Power
391
- for property in pgood state pgood_timeout
392
- do
391
+ for property in pgood state pgood_timeout; do
393
392
# get_property can potentially return several
394
393
# different formats of values, so we do the parsing outside
395
394
# of get_property depending on the query. These queries
396
395
# 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]*//' )
399
397
printf " %s = %s\n" $property " $STATE "
400
398
done
401
399
;;
@@ -417,7 +415,7 @@ handle_cmd ()
417
415
PROPERTY=AutoReboot
418
416
VALUE=false
419
417
set_property " $SERVICE " $OBJECT $INTERFACE $PROPERTY " b" $VALUE
420
- ;;
418
+ ;;
421
419
hostrebooton)
422
420
OBJECT=$CONTROL_OBJECT /host$G_INSTANCE_ID /auto_reboot
423
421
SERVICE=$( mapper get-service $OBJECT )
0 commit comments