Skip to content

Commit 435a84a

Browse files
Merge pull request #2 from goneri/master
First sync Reviewed-by: https://github.com/apps/ansible-zuul
2 parents d957ee0 + 0b14baf commit 435a84a

File tree

493 files changed

+67986
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

493 files changed

+67986
-0
lines changed

.gitignore

Lines changed: 387 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,387 @@
1+
2+
# Created by https://www.gitignore.io/api/git,linux,pydev,python,windows,pycharm+all,jupyternotebook,vim,webstorm,emacs,dotenv
3+
# Edit at https://www.gitignore.io/?templates=git,linux,pydev,python,windows,pycharm+all,jupyternotebook,vim,webstorm,emacs,dotenv
4+
5+
### dotenv ###
6+
.env
7+
8+
### Emacs ###
9+
# -*- mode: gitignore; -*-
10+
*~
11+
\#*\#
12+
/.emacs.desktop
13+
/.emacs.desktop.lock
14+
*.elc
15+
auto-save-list
16+
tramp
17+
.\#*
18+
19+
# Org-mode
20+
.org-id-locations
21+
*_archive
22+
23+
# flymake-mode
24+
*_flymake.*
25+
26+
# eshell files
27+
/eshell/history
28+
/eshell/lastdir
29+
30+
# elpa packages
31+
/elpa/
32+
33+
# reftex files
34+
*.rel
35+
36+
# AUCTeX auto folder
37+
/auto/
38+
39+
# cask packages
40+
.cask/
41+
dist/
42+
43+
# Flycheck
44+
flycheck_*.el
45+
46+
# server auth directory
47+
/server/
48+
49+
# projectiles files
50+
.projectile
51+
52+
# directory configuration
53+
.dir-locals.el
54+
55+
# network security
56+
/network-security.data
57+
58+
59+
### Git ###
60+
# Created by git for backups. To disable backups in Git:
61+
# $ git config --global mergetool.keepBackup false
62+
*.orig
63+
64+
# Created by git when using merge tools for conflicts
65+
*.BACKUP.*
66+
*.BASE.*
67+
*.LOCAL.*
68+
*.REMOTE.*
69+
*_BACKUP_*.txt
70+
*_BASE_*.txt
71+
*_LOCAL_*.txt
72+
*_REMOTE_*.txt
73+
74+
#!! ERROR: jupyternotebook is undefined. Use list command to see defined gitignore types !!#
75+
76+
### Linux ###
77+
78+
# temporary files which can be created if a process still has a handle open of a deleted file
79+
.fuse_hidden*
80+
81+
# KDE directory preferences
82+
.directory
83+
84+
# Linux trash folder which might appear on any partition or disk
85+
.Trash-*
86+
87+
# .nfs files are created when an open file is removed but is still being accessed
88+
.nfs*
89+
90+
### PyCharm+all ###
91+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
92+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
93+
94+
# User-specific stuff
95+
.idea/**/workspace.xml
96+
.idea/**/tasks.xml
97+
.idea/**/usage.statistics.xml
98+
.idea/**/dictionaries
99+
.idea/**/shelf
100+
101+
# Generated files
102+
.idea/**/contentModel.xml
103+
104+
# Sensitive or high-churn files
105+
.idea/**/dataSources/
106+
.idea/**/dataSources.ids
107+
.idea/**/dataSources.local.xml
108+
.idea/**/sqlDataSources.xml
109+
.idea/**/dynamic.xml
110+
.idea/**/uiDesigner.xml
111+
.idea/**/dbnavigator.xml
112+
113+
# Gradle
114+
.idea/**/gradle.xml
115+
.idea/**/libraries
116+
117+
# Gradle and Maven with auto-import
118+
# When using Gradle or Maven with auto-import, you should exclude module files,
119+
# since they will be recreated, and may cause churn. Uncomment if using
120+
# auto-import.
121+
# .idea/modules.xml
122+
# .idea/*.iml
123+
# .idea/modules
124+
# *.iml
125+
# *.ipr
126+
127+
# CMake
128+
cmake-build-*/
129+
130+
# Mongo Explorer plugin
131+
.idea/**/mongoSettings.xml
132+
133+
# File-based project format
134+
*.iws
135+
136+
# IntelliJ
137+
out/
138+
139+
# mpeltonen/sbt-idea plugin
140+
.idea_modules/
141+
142+
# JIRA plugin
143+
atlassian-ide-plugin.xml
144+
145+
# Cursive Clojure plugin
146+
.idea/replstate.xml
147+
148+
# Crashlytics plugin (for Android Studio and IntelliJ)
149+
com_crashlytics_export_strings.xml
150+
crashlytics.properties
151+
crashlytics-build.properties
152+
fabric.properties
153+
154+
# Editor-based Rest Client
155+
.idea/httpRequests
156+
157+
# Android studio 3.1+ serialized cache file
158+
.idea/caches/build_file_checksums.ser
159+
160+
### PyCharm+all Patch ###
161+
# Ignores the whole .idea folder and all .iml files
162+
# See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
163+
164+
.idea/
165+
166+
# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
167+
168+
*.iml
169+
modules.xml
170+
.idea/misc.xml
171+
*.ipr
172+
173+
# Sonarlint plugin
174+
.idea/sonarlint
175+
176+
### pydev ###
177+
.pydevproject
178+
179+
### Python ###
180+
# Byte-compiled / optimized / DLL files
181+
__pycache__/
182+
*.py[cod]
183+
*$py.class
184+
185+
# C extensions
186+
*.so
187+
188+
# Distribution / packaging
189+
.Python
190+
build/
191+
develop-eggs/
192+
downloads/
193+
eggs/
194+
.eggs/
195+
lib/
196+
lib64/
197+
parts/
198+
sdist/
199+
var/
200+
wheels/
201+
pip-wheel-metadata/
202+
share/python-wheels/
203+
*.egg-info/
204+
.installed.cfg
205+
*.egg
206+
MANIFEST
207+
208+
# PyInstaller
209+
# Usually these files are written by a python script from a template
210+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
211+
*.manifest
212+
*.spec
213+
214+
# Installer logs
215+
pip-log.txt
216+
pip-delete-this-directory.txt
217+
218+
# Unit test / coverage reports
219+
htmlcov/
220+
.tox/
221+
.nox/
222+
.coverage
223+
.coverage.*
224+
.cache
225+
nosetests.xml
226+
coverage.xml
227+
*.cover
228+
.hypothesis/
229+
.pytest_cache/
230+
231+
# Translations
232+
*.mo
233+
*.pot
234+
235+
# Scrapy stuff:
236+
.scrapy
237+
238+
# Sphinx documentation
239+
docs/_build/
240+
241+
# PyBuilder
242+
target/
243+
244+
# pyenv
245+
.python-version
246+
247+
# pipenv
248+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
249+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
250+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
251+
# install all needed dependencies.
252+
#Pipfile.lock
253+
254+
# celery beat schedule file
255+
celerybeat-schedule
256+
257+
# SageMath parsed files
258+
*.sage.py
259+
260+
# Spyder project settings
261+
.spyderproject
262+
.spyproject
263+
264+
# Rope project settings
265+
.ropeproject
266+
267+
# Mr Developer
268+
.mr.developer.cfg
269+
.project
270+
271+
# mkdocs documentation
272+
/site
273+
274+
# mypy
275+
.mypy_cache/
276+
.dmypy.json
277+
dmypy.json
278+
279+
# Pyre type checker
280+
.pyre/
281+
282+
### Vim ###
283+
# Swap
284+
[._]*.s[a-v][a-z]
285+
[._]*.sw[a-p]
286+
[._]s[a-rt-v][a-z]
287+
[._]ss[a-gi-z]
288+
[._]sw[a-p]
289+
290+
# Session
291+
Session.vim
292+
Sessionx.vim
293+
294+
# Temporary
295+
.netrwhist
296+
# Auto-generated tag files
297+
tags
298+
# Persistent undo
299+
[._]*.un~
300+
301+
### WebStorm ###
302+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
303+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
304+
305+
# User-specific stuff
306+
307+
# Generated files
308+
309+
# Sensitive or high-churn files
310+
311+
# Gradle
312+
313+
# Gradle and Maven with auto-import
314+
# When using Gradle or Maven with auto-import, you should exclude module files,
315+
# since they will be recreated, and may cause churn. Uncomment if using
316+
# auto-import.
317+
# .idea/modules.xml
318+
# .idea/*.iml
319+
# .idea/modules
320+
# *.iml
321+
# *.ipr
322+
323+
# CMake
324+
325+
# Mongo Explorer plugin
326+
327+
# File-based project format
328+
329+
# IntelliJ
330+
331+
# mpeltonen/sbt-idea plugin
332+
333+
# JIRA plugin
334+
335+
# Cursive Clojure plugin
336+
337+
# Crashlytics plugin (for Android Studio and IntelliJ)
338+
339+
# Editor-based Rest Client
340+
341+
# Android studio 3.1+ serialized cache file
342+
343+
### WebStorm Patch ###
344+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
345+
346+
# *.iml
347+
# modules.xml
348+
# .idea/misc.xml
349+
# *.ipr
350+
351+
# Sonarlint plugin
352+
.idea/**/sonarlint/
353+
354+
# SonarQube Plugin
355+
.idea/**/sonarIssues.xml
356+
357+
# Markdown Navigator plugin
358+
.idea/**/markdown-navigator.xml
359+
.idea/**/markdown-navigator/
360+
361+
### Windows ###
362+
# Windows thumbnail cache files
363+
Thumbs.db
364+
Thumbs.db:encryptable
365+
ehthumbs.db
366+
ehthumbs_vista.db
367+
368+
# Dump file
369+
*.stackdump
370+
371+
# Folder config file
372+
[Dd]esktop.ini
373+
374+
# Recycle Bin used on file shares
375+
$RECYCLE.BIN/
376+
377+
# Windows Installer files
378+
*.cab
379+
*.msi
380+
*.msix
381+
*.msm
382+
*.msp
383+
384+
# Windows shortcuts
385+
*.lnk
386+
387+
# End of https://www.gitignore.io/api/git,linux,pydev,python,windows,pycharm+all,jupyternotebook,vim,webstorm,emacs,dotenv

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[![GitHub Actions CI/CD build status — Collection test suite](https://github.com/ansible-collection-migration/vmware.general/workflows/Collection%20test%20suite/badge.svg?branch=master)](https://github.com/ansible-collection-migration/vmware.general/actions?query=workflow%3A%22Collection%20test%20suite%22)
2+
3+
Ansible Collection: vmware.general
4+
=================================================

0 commit comments

Comments
 (0)