in assets/scripts/SilentInstaller.py [0:0]
def make_bootstrap_cmd_line_parser():
parser = argparse.ArgumentParser(description='Tableau Server silent installation script')
required_flags = parser.add_argument_group('required flags')
required_flags.add_argument('--bootstrapFile', help='a json file containing all options listed here. When using this option, no other options can be specified on the command line.', required=True)
# parser.print_usage = lambda x: print_error('When using the --bootstrapFile flag, no other flags are allowed')
return parser