From 17eb55c52985bb68ac7666ca1afa5b5f848b7b53 Mon Sep 17 00:00:00 2001 From: Corentin LABBE Date: Thu, 11 Jan 2018 11:45:07 +0100 Subject: Remove lavapdu support and replace with pdu_generic Recent lavapdu is unpackaged and buggy. Remove it and replace with a generic PDU command line wrapper --- lavalab-gen.py | 25 ++++++++++--------------- 1 file changed, 10 insertions(+), 15 deletions(-) (limited to 'lavalab-gen.py') diff --git a/lavalab-gen.py b/lavalab-gen.py index c0b5f8d..0e0b583 100755 --- a/lavalab-gen.py +++ b/lavalab-gen.py @@ -19,10 +19,6 @@ template_conmux = string.Template("""# # listener ${board} application console '${board} console' 'exec sg dialout "cu-loop /dev/${board} ${baud}"' -command 'hardreset' 'Reboot ${board}' 'pduclient --daemon ${daemon} --host ${host} --port ${port} --command reboot ${delay} ' -command 'b' 'Reboot ${board}' 'pduclient --daemon ${daemon} --host ${host} --port ${port} --command reboot ' -command 'off' 'Power off ${board}' 'pduclient --daemon ${daemon} --host ${host} --port ${port} --command off ' -command 'on' 'Power on ${board}' 'pduclient --daemon ${daemon} --host ${host} --port ${port} --command on ' """) #no comment it is volontary @@ -32,10 +28,10 @@ template_device = string.Template("""{% extends '${devicetype}.jinja2' %} template_device_conmux = string.Template(""" {% set connection_command = 'conmux-console ${board}' %} """) -template_device_pdu = string.Template(""" -{% set hard_reset_command = 'pduclient --daemon localhost --hostname acme-0 --port ${port} --command=reboot' %} -{% set power_off_command = 'pduclient --daemon localhost --hostname acme-0 --port ${port} --command=off' %} -{% set power_on_command = 'pduclient --daemon localhost --hostname acme-0 --port ${port} --command=on' %} +template_device_pdu_generic = string.Template(""" +{% set hard_reset_command = '${hard_reset_command}' %} +{% set power_off_command = '${power_off_command}' %} +{% set power_on_command = '${power_on_command}' %} """) template_udev = string.Template("""# @@ -74,15 +70,14 @@ def main(args): devicetype = b["type"] device_line = template_device.substitute(devicetype=devicetype) - if b.has_key("pdu"): - daemon = b["pdu"]["daemon"] - host = b["pdu"]["host"] - port = b["pdu"]["port"] - delay_opt = "" - device_line += template_device_pdu.substitute(port=port) + if b.has_key("pdu_generic"): + hard_reset_command = b["pdu_generic"]["hard_reset_command"] + power_off_command = b["pdu_generic"]["power_off_command"] + power_on_command = b["pdu_generic"]["power_on_command"] + device_line += template_device_pdu_generic.substitute(hard_reset_command=hard_reset_command, power_off_command=power_off_command, power_on_command=power_on_command) if b.has_key("uart"): baud = b["uart"].get("baud", baud_default) - line = template_conmux.substitute(board=board_name, baud=baud, daemon=daemon, host=host, port=port, delay=delay_opt) + line = template_conmux.substitute(board=board_name, baud=baud) serial = b["uart"]["serial"] udev_line += template_udev.substitute(board=board_name, serial=serial) dc_devices.append("/dev/%s:/dev/%s" % (board_name, board_name)) -- cgit 1.2.3-korg