Merge pull request 'master' (#12) from claudiomaradonna/configurations-ansible:master into master
Reviewed-on: #12
This commit is contained in:
commit
511d31faff
3 changed files with 5 additions and 2 deletions
|
@ -22,7 +22,7 @@ Dependencies
|
||||||
Example Playbook
|
Example Playbook
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
`ansible-playbook -i inventory/example.yml handbook.yml --extra-vars="target=your_target go_path=/opt/go/bin" --tags dns_filter`
|
`ansible-playbook -i inventory/example.yml handbook.yml --extra-vars="target=your_target go_path=/opt/go/bin"`
|
||||||
|
|
||||||
License
|
License
|
||||||
-------
|
-------
|
||||||
|
|
|
@ -40,7 +40,6 @@ galaxy_info:
|
||||||
# - 99.99
|
# - 99.99
|
||||||
|
|
||||||
galaxy_tags:
|
galaxy_tags:
|
||||||
- dns_filter
|
|
||||||
# List tags for your role here, one per line. A tag is a keyword that describes
|
# List tags for your role here, one per line. A tag is a keyword that describes
|
||||||
# and categorizes the role. Users find roles by searching for tags. Be sure to
|
# and categorizes the role. Users find roles by searching for tags. Be sure to
|
||||||
# remove the '[]' above, if you add tags to this list.
|
# remove the '[]' above, if you add tags to this list.
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
- name: Install cURL if not present
|
||||||
|
ansible.builtin.package:
|
||||||
|
name: curl
|
||||||
|
|
||||||
- name: Create /usr/local/apt-keys directory
|
- name: Create /usr/local/apt-keys directory
|
||||||
ansible.builtin.file:
|
ansible.builtin.file:
|
||||||
path: /usr/local/apt-keys
|
path: /usr/local/apt-keys
|
||||||
|
|
Loading…
Reference in a new issue