Skip to content

Commit

Permalink
Merge pull request #119 from hubblestack/develop
Browse files Browse the repository at this point in the history
Merge to master (prep v2017.9.2)
  • Loading branch information
basepi authored Sep 28, 2017
2 parents eb7d7c8 + eb27840 commit ea9de49
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ gitfs_remotes:
- https://github.com/hubblestack/hubblestack_data.git:
- root: ''
- https://github.com/hubblestack/hubble-salt.git:
- base: v2017.9.1
- base: v2017.9.2
- root: ''
```
Expand Down
2 changes: 1 addition & 1 deletion _beacons/pulsar.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
DEFAULT_MASK = None

__virtualname__ = 'pulsar'
__version__ = 'v2017.9.1'
__version__ = 'v2017.9.2'
CONFIG = None
CONFIG_STALENESS = 0

Expand Down
2 changes: 1 addition & 1 deletion _modules/hubble.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
from nova_loader import NovaLazyLoader

__nova__ = {}
__version__ = 'v2017.9.1'
__version__ = 'v2017.9.2'


def audit(configs=None,
Expand Down
4 changes: 2 additions & 2 deletions _modules/nebula_osquery.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@

log = logging.getLogger(__name__)

__version__ = 'v2017.9.1'
__version__ = 'v2017.9.2'
__virtualname__ = 'nebula'


Expand Down Expand Up @@ -201,7 +201,7 @@ def queries(query_group,
for query_name, query_ret in r.iteritems():
for result in query_ret['data']:
for key, value in result.iteritems():
if value and isinstance(value, str) and value.startswith('__JSONIFY__'):
if value and isinstance(value, basestring) and value.startswith('__JSONIFY__'):
result[key] = json.loads(value[len('__JSONIFY__'):])

return ret
Expand Down
2 changes: 1 addition & 1 deletion _modules/win_pulsar.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
CONFIG = None
CONFIG_STALENESS = 0

__version__ = 'v2017.9.1'
__version__ = 'v2017.9.2'


def __virtual__():
Expand Down
2 changes: 1 addition & 1 deletion _returners/slack_pulsar_returner.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
# Import Salt Libs
import salt.returners

__version__ = 'v2017.9.1'
__version__ = 'v2017.9.2'

log = logging.getLogger(__name__)

Expand Down
2 changes: 1 addition & 1 deletion _returners/splunk_nebula_return.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@

import logging

__version__ = 'v2017.9.1'
__version__ = 'v2017.9.2'

_max_content_bytes = 100000
http_event_collector_SSL_verify = False
Expand Down
2 changes: 1 addition & 1 deletion _returners/splunk_nova_return.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@

import logging

__version__ = 'v2017.9.1'
__version__ = 'v2017.9.2'

_max_content_bytes = 100000
http_event_collector_SSL_verify = False
Expand Down
2 changes: 1 addition & 1 deletion _returners/splunk_pulsar_return.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@

import logging

__version__ = 'v2017.9.1'
__version__ = 'v2017.9.2'

_max_content_bytes = 100000
http_event_collector_SSL_verify = False
Expand Down

0 comments on commit ea9de49

Please sign in to comment.