Skip to content

Commit

Permalink
Merge pull request #1 from zeelax/fix/ansible-2.x
Browse files Browse the repository at this point in the history
Ansible 2.x stuff
  • Loading branch information
ahelal committed May 19, 2016
2 parents 3a9372d + 6e38428 commit eefc49b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 7 deletions.
1 change: 0 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,3 @@ How to Contribute
We welcome community contributions! You can help by reporting bugs, fixing code, adding new features and/or better documentation.

We use the common fork, feature branch, pull request workflow. If you would like to contribute to the project, fork the project, create a feature branch, make your changes and then issue a pull request. See [Using pull requests](https://help.github.com/articles/using-pull-requests/)

2 changes: 1 addition & 1 deletion CONTRIBUTORS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Contributors (sorted alphabeticaly)
===

* [Adham Helal](https://github.com/ahelal)
* [Adham Helal](https://github.com/ahelal)
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,5 +79,3 @@ Following command is used to encrypt file.
Following command is used to edit encrypted file.

ansible-vault edit vault-ssl.yml


6 changes: 3 additions & 3 deletions tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@
src="pemfile.j2"
dest="{{ ssl_path }}/{{ item.hostname }}.pem"
mode="0600"
with_items: ssl_cert
with_items: "{{ ssl_cert }}"
no_log: True

- name: Deploy key file
template:
src="keyfile.j2"
dest="{{ ssl_path }}/{{ item.hostname }}.key"
mode="0600"
with_items: ssl_cert
no_log: True
with_items: "{{ ssl_cert }}"
no_log: True

0 comments on commit eefc49b

Please sign in to comment.