-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
266 additions
and
95 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 |
---|---|---|
|
@@ -50,6 +50,17 @@ git remote add upstream [email protected]:greenpau/ndmtk.git | |
Thereafter, the contributor follows the Initial Github Commit and Pull Request | ||
guidance. | ||
|
||
:warning: In some instances, a user's fork does not sync with its **upstream** | ||
automatically. In those cases, the user must manually sync the fork: | ||
|
||
``` | ||
git checkout master | ||
git remote add upstream git://github.com/greenpau/ndmtk.git | ||
git fetch upstream | ||
git merge upstream/master master | ||
git push | ||
``` | ||
|
||
:arrow_up: [Back to top](#top) | ||
|
||
***** | ||
|
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
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
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 @@ | ||
FROM centos:latest | ||
MAINTAINER Paul Greenberg @greenpau | ||
|
||
RUN yum -y update && yum -y install curl git gcc vim make python-devel libffi-devel openssl-devel && \ | ||
curl -s https://bootstrap.pypa.io/get-pip.py -o get-pip.py && python get-pip.py | ||
|
||
RUN pip install --upgrade pip | ||
RUN pip install ansible==2.2.0.0 | ||
|
||
WORKDIR /etc/ansible | ||
|
||
COPY demo/firewall/ansible.vault.yml /root/.ansible.vault.yml | ||
COPY demo/firewall/ansible.vault.key /root/.ansible.vault.key | ||
COPY demo/firewall/hosts /etc/ansible/ | ||
COPY demo/firewall/ansible.cfg /etc/ansible/ | ||
COPY demo/firewall/README.md /etc/ansible/ | ||
COPY demo/firewall/playbooks/*.yml /etc/ansible/playbooks/ | ||
COPY demo/firewall/files/ndmtk/spec/*.yml /etc/ansible/files/ndmtk/spec/ | ||
COPY demo/firewall/files/ndmtk/os/*.yml /etc/ansible/files/ndmtk/os/ | ||
COPY demo/firewall/files/ndmtk/host/*.yml /etc/ansible/files/ndmtk/host/ | ||
COPY demo/firewall/files/ndmtk/exceptions.yml /etc/ansible/files/ndmtk/ | ||
COPY dist/ndmtk-0.1.1.tar.gz /usr/local/src/ | ||
RUN pip install /usr/local/src/ndmtk-0.1.1.tar.gz | ||
|
||
ENTRYPOINT ["/bin/bash"] |
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
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
Oops, something went wrong.