Home | History | Annotate | Download | only in site_utils

Lines Matching defs:options

90 def cleanup(container, options):
94 @param options: Options to do cleanup.
99 if not options.execute:
125 @return: Options to run the script.
145 def main(options):
148 @param options: Options to run the script.
151 if options.logfile:
153 file_path=os.path.abspath(options.logfile),
154 level=logging.DEBUG if options.verbose else logging.INFO)
163 if cleanup(container, options):
171 options = parse_options()
172 main(options)