Skip to content

Commit a1a5f9a

Browse files
author
Bradley A. Thornton
committed
Add LICENSE, README, company
1 parent 91eba27 commit a1a5f9a

File tree

17 files changed

+809
-78
lines changed

17 files changed

+809
-78
lines changed

README.md

Lines changed: 64 additions & 64 deletions
Original file line numberDiff line numberDiff line change
@@ -66,47 +66,47 @@ ansible-playbook -e parent=~/github/rm_example \
6666
├── docs
6767
├── playbooks
6868
├── plugins
69-
   ├── action
70-
   ├── filter
71-
   ├── inventory
72-
   ├── modules
73-
   │   ├── __init__.py
74-
   │   └── myos_interfaces.py
75-
   └── module_utils
76-
   ├── __init__.py
77-
   ├── network
78-
   │   ├── argspec
79-
   │   │   ├── base.py
80-
   │   │   └── __init__.py
81-
   │   └── __init__.py
82-
   └── myos
83-
   ├── argspec
84-
   │   ├── facts
85-
   │   │   ├── facts.py
86-
   │   │   └── __init__.py
87-
   │   ├── __init__.py
88-
   │   └── interfaces
89-
   │   ├── __init__.py
90-
   │   └── interfaces.py
91-
   ├── config
92-
   │   ├── base.py
93-
   │   ├── __init__.py
94-
   │   └── interfaces
95-
   │   ├── __init__.py
96-
   │   └── interfaces.py
97-
   ├── facts
98-
   │   ├── base.py
99-
   │   ├── facts.py
100-
   │   ├── __init__.py
101-
   │   └── interfaces
102-
   │   ├── __init__.py
103-
   │   └── interfaces.py
104-
   ├── __init__.py
105-
   └── utils
106-
   ├── __init__.py
107-
   └── utils.py
69+
├── action
70+
├── filter
71+
├── inventory
72+
├── modules
73+
├── __init__.py
74+
└── myos_interfaces.py
75+
└── module_utils
76+
├── __init__.py
77+
├── network
78+
├── argspec
79+
│ │ ├── base.py
80+
│ │ └── __init__.py
81+
└── __init__.py
82+
└── myos
83+
├── argspec
84+
├── facts
85+
│ │ ├── facts.py
86+
│ │ └── __init__.py
87+
├── __init__.py
88+
└── interfaces
89+
├── __init__.py
90+
└── interfaces.py
91+
├── config
92+
├── base.py
93+
├── __init__.py
94+
└── interfaces
95+
├── __init__.py
96+
└── interfaces.py
97+
├── facts
98+
├── base.py
99+
├── facts.py
100+
├── __init__.py
101+
└── interfaces
102+
├── __init__.py
103+
└── interfaces.py
104+
├── __init__.py
105+
└── utils
106+
├── __init__.py
107+
└── utils.py
108108
└── roles
109-
 
109+
110110
```
111111
**Role directory layout**
112112

@@ -124,37 +124,37 @@ ansible-playbook -e parent=~/github/rm_example/roles/my_role \
124124
└── roles
125125
└── my_role
126126
├── library
127-
   ├── __init__.py
128-
   └── myos_interfaces.py
127+
├── __init__.py
128+
└── myos_interfaces.py
129129
└── module_utils
130130
├── __init__.py
131131
├── network
132-
   ├── argspec
133-
   │   ├── base.py
134-
   │   └── __init__.py
135-
   └── __init__.py
132+
├── argspec
133+
├── base.py
134+
└── __init__.py
135+
└── __init__.py
136136
└── myos
137137
├── argspec
138-
   ├── facts
139-
   │   ├── facts.py
140-
   │   └── __init__.py
141-
   ├── __init__.py
142-
   └── interfaces
143-
   ├── __init__.py
144-
   └── interfaces.py
138+
├── facts
139+
├── facts.py
140+
└── __init__.py
141+
├── __init__.py
142+
└── interfaces
143+
├── __init__.py
144+
└── interfaces.py
145145
├── config
146-
   ├── base.py
147-
   ├── __init__.py
148-
   └── interfaces
149-
   ├── __init__.py
150-
   └── interfaces.py
146+
├── base.py
147+
├── __init__.py
148+
└── interfaces
149+
├── __init__.py
150+
└── interfaces.py
151151
├── facts
152-
   ├── base.py
153-
   ├── facts.py
154-
   ├── __init__.py
155-
   └── interfaces
156-
   ├── __init__.py
157-
   └── interfaces.py
152+
├── base.py
153+
├── facts.py
154+
├── __init__.py
155+
└── interfaces
156+
├── __init__.py
157+
└── interfaces.py
158158
├── __init__.py
159159
└── utils
160160
├── __init__.py

models/myos/interfaces/myos_interfaces.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ metadata:
55
- preview
66
supported_by:
77
- '<support_group>'
8+
copyright_str: Copyright 2019 <company_name>
9+
license: gpl-3.0.txt
810
info:
911
network_os: myos
1012
resource: interfaces

0 commit comments

Comments
 (0)