Skip to content

Commit 8f5ed45

Browse files
author
Bradley A. Thornton
committed
README update
1 parent e96e744 commit 8f5ed45

File tree

1 file changed

+67
-59
lines changed

1 file changed

+67
-59
lines changed

README.md

Lines changed: 67 additions & 59 deletions
Original file line numberDiff line numberDiff line change
@@ -76,33 +76,37 @@ ansible-playbook -e parent=~/github/rm_example \
7676
│   │   └── myos_interfaces.py
7777
│   └── module_utils
7878
│   ├── __init__.py
79-
│   └── myos
80-
│   ├── argspec
81-
│   │   ├── facts
82-
│   │   │   ├── facts.py
83-
│   │   │   └── __init__.py
84-
│   │   ├── __init__.py
85-
│   │   └── interfaces
86-
│   │   ├── __init__.py
87-
│   │   └── interfaces.py
88-
│   ├── config
89-
│   │   ├── base.py
90-
│   │   ├── __init__.py
91-
│   │   └── interfaces
92-
│   │   ├── __init__.py
93-
│   │   └── interfaces.py
94-
│   ├── facts
95-
│   │   ├── base.py
96-
│   │   ├── facts.py
97-
│   │   ├── __init__.py
98-
│   │   └── interfaces
99-
│   │   ├── __init__.py
100-
│   │   └── interfaces.py
79+
│   └── network
10180
│   ├── __init__.py
102-
│   └── utils
81+
│   └── myos
82+
│   ├── argspec
83+
│   │   ├── facts
84+
│   │   │   ├── facts.py
85+
│   │   │   └── __init__.py
86+
│   │   ├── __init__.py
87+
│   │   └── interfaces
88+
│   │   ├── __init__.py
89+
│   │   └── interfaces.py
90+
│   ├── config
91+
│   │   ├── base.py
92+
│   │   ├── __init__.py
93+
│   │   └── interfaces
94+
│   │   ├── __init__.py
95+
│   │   └── interfaces.py
96+
│   ├── facts
97+
│   │   ├── base.py
98+
│   │   ├── facts.py
99+
│   │   ├── __init__.py
100+
│   │   └── interfaces
101+
│   │   ├── __init__.py
102+
│   │   └── interfaces.py
103103
│   ├── __init__.py
104-
│   └── utils.py
105-
└── roles
104+
│   └── utils
105+
│   ├── __init__.py
106+
│   └── utils.py
107+
├── README.md
108+
├── roles
109+
106110
 
107111
```
108112
**Role directory layout**
@@ -118,40 +122,44 @@ ansible-playbook -e parent=~/github/rm_example/roles/my_role \
118122
```
119123

120124
```
121-
└── roles
122-
└── my_role
123-
├── library
124-
│   ├── __init__.py
125-
│   ├── myos_facts.py
126-
│   └── myos_interfaces.py
127-
└── module_utils
128-
├── __init__.py
129-
└── myos
130-
├── argspec
131-
│   ├── facts
132-
│   │   ├── facts.py
133-
│   │   └── __init__.py
134-
│   ├── __init__.py
135-
│   └── interfaces
136-
│   ├── __init__.py
137-
│   └── interfaces.py
138-
├── config
139-
│   ├── base.py
140-
│   ├── __init__.py
141-
│   └── interfaces
142-
│   ├── __init__.py
143-
│   └── interfaces.py
144-
├── facts
145-
│   ├── base.py
146-
│   ├── facts.py
147-
│   ├── __init__.py
148-
│   └── interfaces
149-
│   ├── __init__.py
150-
│   └── interfaces.py
151-
├── __init__.py
152-
└── utils
153-
├── __init__.py
154-
└── utils.py
125+
roles
126+
└── my_role
127+
├── library
128+
│   ├── __init__.py
129+
│   ├── myos_facts.py
130+
│   └── myos_interfaces.py
131+
├── LICENSE.txt
132+
├── module_utils
133+
│   ├── __init__.py
134+
│   └── network
135+
│   ├── __init__.py
136+
│   └── myos
137+
│   ├── argspec
138+
│   │   ├── facts
139+
│   │   │   ├── facts.py
140+
│   │   │   └── __init__.py
141+
│   │   ├── __init__.py
142+
│   │   └── interfaces
143+
│   │   ├── __init__.py
144+
│   │   └── interfaces.py
145+
│   ├── config
146+
│   │   ├── base.py
147+
│   │   ├── __init__.py
148+
│   │   └── interfaces
149+
│   │   ├── __init__.py
150+
│   │   └── interfaces.py
151+
│   ├── facts
152+
│   │   ├── base.py
153+
│   │   ├── facts.py
154+
│   │   ├── __init__.py
155+
│   │   └── interfaces
156+
│   │   ├── __init__.py
157+
│   │   └── interfaces.py
158+
│   ├── __init__.py
159+
│   └── utils
160+
│   ├── __init__.py
161+
│   └── utils.py
162+
└── README.md
155163
```
156164

157165
**Using the collection layout**

0 commit comments

Comments
 (0)