6 lines
122 B
Bash
6 lines
122 B
Bash
#!/bin/bash
|
|
# Usage of this utility
|
|
echo "Trigger soft off the host."
|
|
/usr/sbin/ampere_power_util.sh mb soft_off
|
|
exit $?;
|