Chapter 3. Configuration File Editor

The openstack-config client is the command-line interface (CLI) for manipulating ini files. This chapter documents openstack-config version 0.7.

3.1. openstack-config Usage

Usage: crudini --set [OPTION]...   config_file section   [param] [value]
crudini --get [OPTION]...   config_file [section] [param]
crudini --del [OPTION]...   config_file section   [param] [list value]
crudini --merge [OPTION]... config_file [section]

3.2. openstack-config Optional Arguments

--existing[=WHAT]


        For --set, --del and --merge, fail if item is missing,
      where WHAT is 'file', 'section', or 'param', or if
      not specified; all specifed items.

--format=FMT


        For --get, select the output FMT.
      Formats are sh,ini,lines

--inplace


        Lock and write files in place.
      This is not atomic but has less restrictions
      than the default replacement method.

--list


        For --set and --del, update a list (set) of values

--list-sep=STR


        Delimit list values with "STR" instead of " ,"

--output=FILE


        Write output to FILE instead. '-' means stdout

--verbose


        Indicate on stderr if changes were made