Commit 1ba73e30 authored by Danilo Pala's avatar Danilo Pala
Browse files

SIAE files customization

parent 1755c437
Loading
Loading
Loading
Loading

SIAE-NEs.yaml

0 → 100644
+13 −0
Original line number Diff line number Diff line
nes:
  SIAE-01:
    params:
      host: 10.100.62.83
      password: admin
      port: '33001'
      username: admin
  SIAE-02:
    params:
      host: 10.100.62.83
      password: admin
      port: '33002'
      username: admin
+3 −0
Original line number Diff line number Diff line
#!/bin/bash
rm interfaces.xlsx > /dev/null 2>&1
python3 ../../../lncc.py "run_script INV_CARRIER_01_script.txt"
+3 −0
Original line number Diff line number Diff line
#!/bin/bash
rm ./interfaces.xlsx >/dev/null 2>&1
python3 ../../../lncc.py "run_script INV_FW_01_script.txt"
+5 −5
Original line number Diff line number Diff line
<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:template match="/nc:data/sys:system-state/sys:platform"
    <xsl:template match="/nc:data/sys:system-state"
                xmlns:nc="urn:ietf:params:xml:ns:netconf:base:1.0"
                xmlns:sys="urn:ietf:params:xml:ns:yang:ietf-system">
        <system-states>
            <system-state>
                <xsl:copy-of select="sys:os-name" />
                <xsl:copy-of select="sys:os-release" />
                <xsl:copy-of select="sys:os-version" />
                <xsl:copy-of select="sys:machine" />
                <xsl:copy-of select="sys:platform/sys:os-name" />
                <xsl:copy-of select="sys:platform/sys:os-release" />
		<xsl:copy-of select="sys:platform/sys:os-version" />
		<xsl:copy-of select="sys:platform/sys:machine" />
            </system-state>
        </system-states>
    </xsl:template>
+3 −0
Original line number Diff line number Diff line
#!/bin/bash
rm hardware.xlsx > /dev/null 2>&1
python3 ../../../lncc.py "run_script INV_HW_01_script.txt"
Loading