-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
First release of Community Edition (v1.6)
- Loading branch information
Showing
36 changed files
with
4,415 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -127,3 +127,8 @@ dmypy.json | |
|
||
# Pyre type checker | ||
.pyre/ | ||
|
||
licenses/ | ||
*.run | ||
makeself/*.py | ||
makeself/Traversys/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# getCert CE - SSL Certificates for BMC Discovery | ||
|
||
| | | | ||
| --- | --- | | ||
| License | Apache License 2.0 | | ||
| Version | 1.6 | | ||
|
||
Polls devices on a given IP range for SSL certificate details. | ||
|
||
## Installation | ||
|
||
### Requires | ||
* Docker | ||
|
||
### Quickstart | ||
1. Install and configure Docker | ||
2. Run `docker build --tag getcert -f dockerbuild/Dockerfile .` | ||
3. To use run `docker run -it -v ${PWD}:/usr/dev getcert:latest` | ||
4. An installation file can be generated by running `prep.py` | ||
|
||
### Deployment | ||
1. Copy the the **traversys_getcert.run** binary to the Discvory Appliance (recommended /usr/tideway/data/customer) | ||
2. Change permissions: `chomd 755 traversys_getcert.run` | ||
3. Run the installation: `./traversys_getcert.run` | ||
4. Follow on-screen instructions. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Pull from source | ||
FROM centos:7 | ||
MAINTAINER [email protected] | ||
|
||
# Setup the environment | ||
RUN yum clean all | ||
RUN yum -y --enablerepo=extras install epel-release && \ | ||
yum -y install centos-release-scl && \ | ||
yum -y install nmap && \ | ||
yum -y install python27 && \ | ||
yum -y install net-tools && \ | ||
yum -y install openssh-server openssh-clients && \ | ||
yum -y install python-pip | ||
RUN easy_install pyinstaller==3.6 | ||
|
||
CMD ["/bin/bash"] | ||
|
||
# | ||
# Build Docker image: | ||
# | ||
# docker build --tag getcert . # creates image getcert | ||
# | ||
# Run Docker Container | ||
# | ||
# docker run -it -v <your git dir>:/usr/dev getcert:latest | ||
# |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "test/bashunit"] | ||
path = test/bashunit | ||
url = https://github.com/djui/bashunit.git |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
2.4.0 |
Oops, something went wrong.