Skip to content

Commit

Permalink
Merge pull request #216 from hubblestack/develop
Browse files Browse the repository at this point in the history
Merge to master (prep v2.2.7)
  • Loading branch information
basepi authored Sep 28, 2017
2 parents 92dda72 + 9f7aea1 commit e316d7d
Show file tree
Hide file tree
Showing 18 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion hubblestack/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2.2.6'
__version__ = '2.2.7'
File renamed without changes.
2 changes: 1 addition & 1 deletion hubblestack/extmods/modules/nebula_osquery.py
Original file line number Diff line number Diff line change
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 hubblestack/extmods/returners/logstash_nebula_return.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
import socket
import requests
from datetime import datetime
from cloud_details import get_cloud_details
from hubblestack.cloud_details import get_cloud_details
from requests.auth import HTTPBasicAuth


Expand Down
2 changes: 1 addition & 1 deletion hubblestack/extmods/returners/logstash_nova_return.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
import time
import socket
import requests
from cloud_details import get_cloud_details
from hubblestack.cloud_details import get_cloud_details
from requests.auth import HTTPBasicAuth

def returner(ret):
Expand Down
2 changes: 1 addition & 1 deletion hubblestack/extmods/returners/logstash_pulsar_return.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
import json
import requests
from collections import defaultdict
from cloud_details import get_cloud_details
from hubblestack.cloud_details import get_cloud_details
from requests.auth import HTTPBasicAuth


Expand Down
2 changes: 1 addition & 1 deletion hubblestack/extmods/returners/splunk_nebula_return.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
'''
import socket
# Import cloud details
from cloud_details import get_cloud_details
from hubblestack.cloud_details import get_cloud_details

# Imports for http event forwarder
import requests
Expand Down
2 changes: 1 addition & 1 deletion hubblestack/extmods/returners/splunk_nova_return.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
'''
import socket
# Import cloud details
from cloud_details import get_cloud_details
from hubblestack.cloud_details import get_cloud_details

# Imports for http event forwarder
import requests
Expand Down
2 changes: 1 addition & 1 deletion hubblestack/extmods/returners/splunk_pulsar_return.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
'''
import socket
# Import cloud details
from cloud_details import get_cloud_details
from hubblestack.cloud_details import get_cloud_details

# Imports for http event forwarder
import requests
Expand Down
2 changes: 1 addition & 1 deletion hubblestack/splunklogging.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
'''
import socket
# Import cloud details
from hubblestack.extmods.returners.cloud_details import get_cloud_details
from hubblestack.cloud_details import get_cloud_details

# Imports for http event forwarder
import requests
Expand Down
4 changes: 2 additions & 2 deletions pkg/amazonlinux2016.09/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ RUN yum install -y ruby ruby-devel rpmbuild rubygems gcc make \
#pyinstaller start
#commands specified for ENTRYPOINT and CMD are executed when the container is run, not when the image is built
#use the following variables to choose the version of hubble
ENV HUBBLE_CHECKOUT=v2.2.6
ENV HUBBLE_VERSION=2.2.6
ENV HUBBLE_CHECKOUT=v2.2.7
ENV HUBBLE_VERSION=2.2.7
ENV HUBBLE_GIT_URL=https://github.com/hubblestack/hubble.git
ENV HUBBLE_SRC_PATH=/hubble_src
ENV _HOOK_DIR="./pkg/"
Expand Down
4 changes: 2 additions & 2 deletions pkg/amazonlinux2017.03/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ RUN yum install -y ruby ruby-devel rpmbuild rubygems gcc make \
#pyinstaller start
#commands specified for ENTRYPOINT and CMD are executed when the container is run, not when the image is built
#use the following variables to choose the version of hubble
ENV HUBBLE_CHECKOUT=v2.2.6
ENV HUBBLE_VERSION=2.2.6
ENV HUBBLE_CHECKOUT=v2.2.7
ENV HUBBLE_VERSION=2.2.7
ENV HUBBLE_GIT_URL=https://github.com/hubblestack/hubble.git
ENV HUBBLE_SRC_PATH=/hubble_src
ENV _HOOK_DIR="./pkg/"
Expand Down
4 changes: 2 additions & 2 deletions pkg/centos6/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ RUN yum install -y rpmbuild gcc make rh-ruby23 rh-ruby23-ruby-devel \
#pyinstaller start
#commands specified for ENTRYPOINT and CMD are executed when the container is run, not when the image is built
#use the following variables to choose the version of hubble
ENV HUBBLE_CHECKOUT=v2.2.6
ENV HUBBLE_VERSION=2.2.6
ENV HUBBLE_CHECKOUT=v2.2.7
ENV HUBBLE_VERSION=2.2.7
ENV HUBBLE_GIT_URL=https://github.com/hubblestack/hubble.git
ENV HUBBLE_SRC_PATH=/hubble_src
ENV _HOOK_DIR="./pkg/"
Expand Down
4 changes: 2 additions & 2 deletions pkg/centos7/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ RUN yum install -y ruby ruby-devel rpmbuild rubygems gcc make \
#pyinstaller start
#commands specified for ENTRYPOINT and CMD are executed when the container is run, not when the image is built
#use the following variables to choose the version of hubble
ENV HUBBLE_CHECKOUT=v2.2.6
ENV HUBBLE_VERSION=2.2.6
ENV HUBBLE_CHECKOUT=v2.2.7
ENV HUBBLE_VERSION=2.2.7
ENV HUBBLE_GIT_URL=https://github.com/hubblestack/hubble.git
ENV HUBBLE_SRC_PATH=/hubble_src
ENV _HOOK_DIR="./pkg/"
Expand Down
4 changes: 2 additions & 2 deletions pkg/coreos/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ RUN pip install --upgrade pip \
#pyinstaller start
#commands specified for ENTRYPOINT and CMD are executed when the container is run, not when the image is built
#use the following variables to choose the version of hubble
ENV HUBBLE_CHECKOUT=v2.2.6
ENV HUBBLE_VERSION=2.2.6
ENV HUBBLE_CHECKOUT=v2.2.7
ENV HUBBLE_VERSION=2.2.7
ENV HUBBLE_GIT_URL=https://github.com/hubblestack/hubble.git
ENV HUBBLE_SRC_PATH=/hubble_src
ENV _HOOK_DIR="./pkg/"
Expand Down
4 changes: 2 additions & 2 deletions pkg/debian7/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ RUN apt-get install -y ruby ruby-dev rubygems gcc make \
#pyinstaller start
#commands specified for ENTRYPOINT and CMD are executed when the container is run, not when the image is built
#use the following variables to choose the version of hubble
ENV HUBBLE_CHECKOUT=v2.2.6
ENV HUBBLE_VERSION=2.2.6
ENV HUBBLE_CHECKOUT=v2.2.7
ENV HUBBLE_VERSION=2.2.7
ENV HUBBLE_GIT_URL=https://github.com/hubblestack/hubble.git
ENV HUBBLE_SRC_PATH=/hubble_src
ENV _HOOK_DIR="./pkg/"
Expand Down
4 changes: 2 additions & 2 deletions pkg/debian8/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ RUN apt-get install -y ruby ruby-dev rubygems gcc make \
#pyinstaller start
#commands specified for ENTRYPOINT and CMD are executed when the container is run, not when the image is built
#use the following variables to choose the version of hubble
ENV HUBBLE_CHECKOUT=v2.2.6
ENV HUBBLE_VERSION=2.2.6
ENV HUBBLE_CHECKOUT=v2.2.7
ENV HUBBLE_VERSION=2.2.7
ENV HUBBLE_GIT_URL=https://github.com/hubblestack/hubble.git
ENV HUBBLE_SRC_PATH=/hubble_src
ENV _HOOK_DIR="./pkg/"
Expand Down
4 changes: 2 additions & 2 deletions pkg/debian9/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ RUN apt-get install -y ruby ruby-dev rubygems gcc make \
#pyinstaller start
#commands specified for ENTRYPOINT and CMD are executed when the container is run, not when the image is built
#use the following variables to choose the version of hubble
ENV HUBBLE_CHECKOUT=v2.2.6
ENV HUBBLE_VERSION=2.2.6
ENV HUBBLE_CHECKOUT=v2.2.7
ENV HUBBLE_VERSION=2.2.7
ENV HUBBLE_GIT_URL=https://github.com/hubblestack/hubble.git
ENV HUBBLE_SRC_PATH=/hubble_src
ENV _HOOK_DIR="./pkg/"
Expand Down

0 comments on commit e316d7d

Please sign in to comment.