mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 05:37:54 +00:00
ebd0796fc0
The plugin works just like the netio plugin and uses the following parameters --power-off-energenie-host network address of device --power-off-energenie-password password for device --power-off-energenie-port target port of device
35 lines
972 B
Plaintext
35 lines
972 B
Plaintext
##
|
|
# Reset the target machine via EnerGenie poweplug by Gembird
|
|
#
|
|
# \param --power-off-energenie-host network address of device
|
|
# \param --power-off-energenie-password password for device
|
|
# \param --power-off-energenie-port target port of device
|
|
#
|
|
|
|
|
|
proc power_off_energenie_host { } {
|
|
return [get_cmd_arg_first --power-off-energenie-host 1]
|
|
}
|
|
|
|
|
|
proc power_off_energenie_password { } {
|
|
return [get_cmd_arg_first --power-off-energenie-password 1]
|
|
}
|
|
|
|
|
|
proc power_off_energenie_port { } {
|
|
return [get_cmd_arg_first --power-off-energenie-port 1]
|
|
}
|
|
|
|
|
|
proc run_power_off { } {
|
|
set host [power_off_energenie_host]
|
|
set password [power_off_energenie_password]
|
|
set power_port [power_off_energenie_port]
|
|
|
|
puts "switch port $power_port off"
|
|
exec curl -s -o /dev/null -d pw=$password http://$host/login.html
|
|
exec curl -s -o /dev/null -d ctl$power_port=0 http://$host/status.html
|
|
exec curl -s -o /dev/null http://$host/login.html
|
|
}
|