bmc-debug-tools/power.inc

37 lines
972 B
Bash

#!/usr/bin/env bash
#
# KGPE-D16 firmware boot process debugging tools via BMC
#
# Desc: power management
#
# Copyright (C) 2024 Adrien 'neox' Bourmault <neox@gnu.org>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
source ssh.inc
boot()
{
ssh_bmc /usr/local/bin/asus_power.sh on &
}
halt()
{
ssh_bmc /usr/local/bin/asus_power.sh off
}
shutdown()
{
ssh_hst sudo shutdown now
}