Skip to content
Snippets Groups Projects
Commit 1e3951c5 authored by jurgenhaas's avatar jurgenhaas
Browse files

Quick mode for Drupal role

parent 76e75b54
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -3,6 +3,8 @@
def extend(parser):
parser.add_argument('--site', default=None,
help='The id of a site if only one of the defined sites should be updated')
parser.add_argument('--quick', action='store_true', default=False,
help='Only Drupal itself, not the CLI or JailKit')
parser.set_defaults(limit='webserver-drupal')
......@@ -15,3 +17,5 @@ def build(cmd, args):
cmd.append('--extra-vars=hosts=' + args.limit + ' role=drupal')
if args.site:
cmd.append('--extra-vars=limit_drupal_site=' + args.site)
if args.quick:
cmd.append('--start-at-task=Drupal Role')
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment