From 79ab4528eadad4285f9992f79a746c2688478b64 Mon Sep 17 00:00:00 2001 From: Kienan Stewart Date: Fri, 25 Aug 2023 14:04:37 -0400 Subject: [PATCH] lava: Update PDU port for cloud08 While the PDU port is 8 when looking from the main apc account, when connecting as the lava user the port should be '1' since it's the only visible device. Eg. ------- Outlet Control/Configuration ------------------------------------------ 1- cloud08 ON Change-Id: I2bcdfc329a4d9ae8bb8f1fc797e1c977107b7a35 --- lava/devices/x86_server01-cloud08.jinja2 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lava/devices/x86_server01-cloud08.jinja2 b/lava/devices/x86_server01-cloud08.jinja2 index 05239ef..b371aaf 100644 --- a/lava/devices/x86_server01-cloud08.jinja2 +++ b/lava/devices/x86_server01-cloud08.jinja2 @@ -1,7 +1,7 @@ {% extends 'x86.jinja2' %} {% set connection_command = 'telnet serial01.internal.efficios.com 7025' %} -{% set hard_reset_command = '/usr/bin/pduclient --daemon localhost --hostname pdu01.internal.efficios.com --command reboot --port 17' %} -{% set power_off_command = '/usr/bin/pduclient --daemon localhost --hostname pdu01.internal.efficios.com --command off --port 17' %} -{% set power_on_command = '/usr/bin/pduclient --daemon localhost --hostname pdu01.internal.efficios.com --command on --port 17' %} +{% set hard_reset_command = '/usr/bin/pduclient --daemon localhost --hostname pdu01.internal.efficios.com --command reboot --port 1' %} +{% set power_off_command = '/usr/bin/pduclient --daemon localhost --hostname pdu01.internal.efficios.com --command off --port 1' %} +{% set power_on_command = '/usr/bin/pduclient --daemon localhost --hostname pdu01.internal.efficios.com --command on --port 1' %} {% set soft_reset_command = 'reboot' %} {% set boot_interface = 'net2' %} -- 2.34.1