Skip to content

Commit 4a7050c

Browse files
author
Bradley A. Thornton
committed
fix README
1 parent a1a5f9a commit 4a7050c

File tree

1 file changed

+64
-64
lines changed

1 file changed

+64
-64
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

0 commit comments

Comments
 (0)