Skip to content

Commit

Permalink
Community Edition
Browse files Browse the repository at this point in the history
First release of Community Edition (v1.6)
  • Loading branch information
codefitz committed Feb 13, 2021
1 parent a8124e1 commit cb9b1d9
Show file tree
Hide file tree
Showing 36 changed files with 4,415 additions and 25 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -127,3 +127,8 @@ dmypy.json

# Pyre type checker
.pyre/

licenses/
*.run
makeself/*.py
makeself/Traversys/
25 changes: 0 additions & 25 deletions LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -174,28 +174,3 @@
of your accepting any such warranty or additional liability.

END OF TERMS AND CONDITIONS

APPENDIX: How to apply the Apache License to your work.

To apply the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "[]"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright [yyyy] [name of copyright owner]

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
25 changes: 25 additions & 0 deletions README.md
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.
26 changes: 26 additions & 0 deletions dockerbuild/Dockerfile
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 added getCert 1.6 Software Manual.pdf
Binary file not shown.
3 changes: 3 additions & 0 deletions makeself/makeself-2.4.0/.gitmodules
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
339 changes: 339 additions & 0 deletions makeself/makeself-2.4.0/COPYING

Large diffs are not rendered by default.

230 changes: 230 additions & 0 deletions makeself/makeself-2.4.0/README.md

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions makeself/makeself-2.4.0/VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2.4.0
Loading

0 comments on commit cb9b1d9

Please sign in to comment.