Lines Matching full:options
13 # Set default values for required IPMI options.
22 # Create a list of the required IPMI options.
25 # more descriptive names (e.g. "interface") for the required options.
37 def create_ipmi_ext_command_string(command, **options): argument
58 options Any desired options that are understood by
61 provide any of several required options
72 if option in options:
75 new_options[option] = options[option]
76 # Delete the value from the caller's options.
77 del options[option]
84 # Include the remainder of the caller's options in the new options
86 for key, value in options.items():