File tree Expand file tree Collapse file tree 1 file changed +64
-64
lines changed Expand file tree Collapse file tree 1 file changed +64
-64
lines changed Original file line number Diff line number Diff line change @@ -66,47 +66,47 @@ ansible-playbook -e parent=~/github/rm_example \
66
66
├── docs
67
67
├── playbooks
68
68
├── 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
108
108
└── roles
109
-
109
+
110
110
```
111
111
** Role directory layout**
112
112
@@ -124,37 +124,37 @@ ansible-playbook -e parent=~/github/rm_example/roles/my_role \
124
124
└── roles
125
125
└── my_role
126
126
├── library
127
- │ ├── __init__.py
128
- │ └── myos_interfaces.py
127
+ │ ├── __init__.py
128
+ │ └── myos_interfaces.py
129
129
└── module_utils
130
130
├── __init__.py
131
131
├── network
132
- │ ├── argspec
133
- │ │ ├── base.py
134
- │ │ └── __init__.py
135
- │ └── __init__.py
132
+ │ ├── argspec
133
+ │ │ ├── base.py
134
+ │ │ └── __init__.py
135
+ │ └── __init__.py
136
136
└── myos
137
137
├── 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
145
145
├── 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
151
151
├── 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
158
158
├── __init__.py
159
159
└── utils
160
160
├── __init__.py
You can’t perform that action at this time.
0 commit comments