(opt_groups)
| 107 | |
| 108 | |
| 109 | def _read_current_config(opt_groups): |
| 110 | for k, v in six.iteritems(cfg.CONF._groups): |
| 111 | if k in SKIP_GROUPS: |
| 112 | continue |
| 113 | if k not in opt_groups: |
| 114 | opt_groups[k] = v |
| 115 | return opt_groups |
| 116 | |
| 117 | |
| 118 | def _clear_config(): |