8 lines
275 B
Bash
8 lines
275 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
# Provide source directive to shellcheck.
|
||
|
|
# shellcheck source=meta-facebook/recipes-phosphor/state/phosphor-state-manager/greatlakes/power-cmd
|
||
|
|
source /usr/libexec/phosphor-state-manager/power-cmd
|
||
|
|
|
||
|
|
# TODO: host power on
|
||
|
|
echo "Host power on is not support for now"
|