|
35 | 35 | from salt.loader import LazyLoader
|
36 | 36 |
|
37 | 37 | __nova__ = {}
|
38 |
| -__version__ = 'v2016.10.2' |
| 38 | +__version__ = 'v2017.1.0' |
39 | 39 |
|
40 | 40 |
|
41 | 41 | def audit(configs=None,
|
@@ -84,7 +84,7 @@ def audit(configs=None,
|
84 | 84 |
|
85 | 85 | show_profile
|
86 | 86 | Whether to add the profile path to the verbose output for audits.
|
87 |
| - Defaults to False. Configurable via `hubblestack:nova:show_profile` |
| 87 | + Defaults to True. Configurable via `hubblestack:nova:show_profile` |
88 | 88 | in minion config/pillar.
|
89 | 89 |
|
90 | 90 | called_from_top
|
@@ -123,7 +123,7 @@ def audit(configs=None,
|
123 | 123 | if show_compliance is None:
|
124 | 124 | show_compliance = __salt__['config.get']('hubblestack:nova:show_compliance', True)
|
125 | 125 | if show_profile is None:
|
126 |
| - show_profile = __salt__['config.get']('hubblestack:nova:show_profile', False) |
| 126 | + show_profile = __salt__['config.get']('hubblestack:nova:show_profile', True) |
127 | 127 | if debug is None:
|
128 | 128 | debug = __salt__['config.get']('hubblestack:nova:debug', False)
|
129 | 129 |
|
@@ -322,7 +322,7 @@ def top(topfile='top.nova',
|
322 | 322 |
|
323 | 323 | show_profile
|
324 | 324 | Whether to add the profile path to the verbose output for audits.
|
325 |
| - Defaults to False. Configurable via `hubblestack:nova:show_profile` |
| 325 | + Defaults to True. Configurable via `hubblestack:nova:show_profile` |
326 | 326 | in minion config/pillar.
|
327 | 327 |
|
328 | 328 | debug
|
@@ -350,7 +350,7 @@ def top(topfile='top.nova',
|
350 | 350 | if show_compliance is None:
|
351 | 351 | show_compliance = __salt__['config.get']('hubblestack:nova:show_compliance', True)
|
352 | 352 | if show_profile is None:
|
353 |
| - show_profile = __salt__['config.get']('hubblestack:nova:show_profile', False) |
| 353 | + show_profile = __salt__['config.get']('hubblestack:nova:show_profile', True) |
354 | 354 | if debug is None:
|
355 | 355 | debug = __salt__['config.get']('hubblestack:nova:debug', False)
|
356 | 356 |
|
|
0 commit comments