-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtree-structure
77 lines (76 loc) · 3.01 KB
/
tree-structure
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
├── Development
│ ├── Inventory
│ │ ├── Inventory.csv
│ │ ├── SW4_inventory.txt
│ │ └── inventory_switches.textfsm
│ ├── L2int.j2
│ ├── change_hostname.yaml
│ ├── configtemplatingjinja.py
│ ├── iosparsefsm.py
│ ├── jinja-snippets.j2
│ ├── output.txt
│ ├── playbook-snippets.yml
│ ├── snippets.txt
├── Playbooks
│ ├── Linux
│ │ ├── PostGRE-Tables.yml
│ │ ├── ansible.cfg
│ │ ├── files
│ │ │ └── NetworkTables.sql
│ │ ├── group_vars
│ │ │ └── rpi.yml
│ │ ├── host_vars
│ │ ├── hosts
│ │ ├── implement_quagga.yml
│ │ ├── roles
│ │ │ └── nginx
│ │ │ ├── files
│ │ │ │ ├── generatetls.sh
│ │ │ │ ├── nginx.conf
│ │ │ │ ├── nginx.crt
│ │ │ │ └── nginx.key
│ │ │ └── templates
│ │ │ ├── index.html.j2
│ │ │ └── nginx.conf.j2
│ │ ├── update_packages.yml
│ │ ├── web-notls.yml
│ │ └── web-tls.yml
│ └── Network_Vendors
│ ├── CSRinterfaces.sql
│ ├── L2switches.yml
│ ├── ansible.cfg
│ ├── avaya-test.yml
│ ├── breakconfig.yml
│ ├── configs
│ │ ├── management-SW1.cfg
│ │ ├── management-SW2.cfg
│ │ ├── management-SW3.cfg
│ │ └── management-SW4.cfg
│ ├── group_vars
│ │ ├── Network-Physical.yml
│ │ ├── Routers.yml
│ │ ├── Switches.yml
│ │ └── all.yml
│ ├── host_vars
│ │ └── SW4.yml
│ ├── hosts
│ ├── ntc-test.yml
│ ├── roles
│ │ └── management
│ │ ├── defaults
│ │ ├── files
│ │ ├── handlers
│ │ ├── tasks
│ │ │ └── main.yml
│ │ ├── templates
│ │ │ ├── Network-Physical.j2
│ │ │ ├── aaa.j2
│ │ │ ├── snmp.j2
│ │ │ └── ssh.j2
│ │ └── vars
│ │ └── main.yml
│ ├── show_output.yml
│ ├── snmp_facts.yml
│ └── templates
├── ansible-requirements.txt
└── install-environment.sh