Home | History | Annotate | Download | only in site_utils

Lines Matching refs:dryrun

201 def update_command(cmd_tag, dryrun=False, use_chromite_master=False):
208 @param dryrun: If true print the command that would have been run.
231 if dryrun:
243 def restart_service(service_name, dryrun=False):
249 @param dryrun: Don't really run anything, just print out the command.
255 if dryrun:
277 def restart_services(service_names, dryrun=False, skip_service_status=False):
285 @param dryrun: Don't really restart the service, just print out the command.
294 if dryrun:
296 restart_service(name, dryrun=True)
322 def run_deploy_actions(cmds_skip=set(), dryrun=False,
328 @param dryrun: Don't really restart the service, just print out the command.
347 update_command(cmd, dryrun=dryrun,
353 restart_services(services, dryrun=dryrun,
423 parser.add_argument('--dryrun', action='store_true',
441 dryrun.
442 if results.dryrun:
510 cmds_skip, behaviors.dryrun, behaviors.skip_service_status,