genode/tool/run/power_off/energenie
Christian Helmuth ebd0796fc0 run: plugin for Gembird EnerGenie powerplug
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
2015-09-09 15:14:30 +02:00

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
}