Skip to content
This repository has been archived by the owner. It is now read-only.

Commit a16e14e

Browse files
authored
Merge pull request #297 from basepi/fixup
Default nova to show_profile=True, and rev to v2017.1.0
2 parents f071913 + 4947e71 commit a16e14e

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ Requirements: GitFS support on your Salt Master.
114114
115115
gitfs_remotes:
116116
- https://github.com/hubblestack/nova:
117-
- base: v2016.10.2
117+
- base: v2017.1.0
118118
119119
.. tip:: Remember to restart the Salt Master after applying this change.
120120

_modules/hubble.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
from salt.loader import LazyLoader
3636

3737
__nova__ = {}
38-
__version__ = 'v2016.10.2'
38+
__version__ = 'v2017.1.0'
3939

4040

4141
def audit(configs=None,
@@ -84,7 +84,7 @@ def audit(configs=None,
8484
8585
show_profile
8686
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`
8888
in minion config/pillar.
8989
9090
called_from_top
@@ -123,7 +123,7 @@ def audit(configs=None,
123123
if show_compliance is None:
124124
show_compliance = __salt__['config.get']('hubblestack:nova:show_compliance', True)
125125
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)
127127
if debug is None:
128128
debug = __salt__['config.get']('hubblestack:nova:debug', False)
129129

@@ -322,7 +322,7 @@ def top(topfile='top.nova',
322322
323323
show_profile
324324
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`
326326
in minion config/pillar.
327327
328328
debug
@@ -350,7 +350,7 @@ def top(topfile='top.nova',
350350
if show_compliance is None:
351351
show_compliance = __salt__['config.get']('hubblestack:nova:show_compliance', True)
352352
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)
354354
if debug is None:
355355
debug = __salt__['config.get']('hubblestack:nova:debug', False)
356356

0 commit comments

Comments
 (0)