bmc-debug-tools/power.inc

37 lines
972 B
PHP
Raw Normal View History

2024-06-13 12:31:56 +02:00
#!/usr/bin/env bash
2024-06-13 15:40:11 +02:00
#
# KGPE-D16 firmware boot process debugging tools via BMC
#
# Desc: power management
#
2024-06-13 12:31:56 +02:00
# 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/>.
2024-06-13 15:40:11 +02:00
source ssh.inc
2024-06-13 12:31:56 +02:00
boot()
{
2024-06-13 17:33:26 +02:00
ssh_bmc /usr/local/bin/asus_power.sh on &
2024-06-13 12:31:56 +02:00
}
2024-06-13 15:40:11 +02:00
halt()
2024-06-13 12:31:56 +02:00
{
ssh_bmc /usr/local/bin/asus_power.sh off
}
shutdown()
{
ssh_hst sudo shutdown now
2024-06-13 15:40:11 +02:00
}