Ansible Galaxy: skel for network role #37241 (#37251)

* Skel for network role (#37241)

Skel and boilerplate for network role.

* Add network option as valid type
This commit is contained in:
Victor da Costa 2018-03-09 19:31:27 +01:00 committed by Chris Houseknecht
parent c2a063a5c0
commit cb53b717a4
18 changed files with 523 additions and 1 deletions

View file

@ -82,7 +82,7 @@ class GalaxyCLI(CLI):
self.parser.add_option('--init-path', dest='init_path', default="./",
help='The path in which the skeleton role will be created. The default is the current working directory.')
self.parser.add_option('--type', dest='role_type', action='store', default='default',
help="Initialize using an alternate role type. Valid types include: 'container', and 'apb'.")
help="Initialize using an alternate role type. Valid types include: 'container', 'apb' and 'network'.")
self.parser.add_option('--role-skeleton', dest='role_skeleton', default=C.GALAXY_ROLE_SKELETON,
help='The path to a role skeleton that the new role should be based upon.')
elif self.action == "install":