diff options
Diffstat (limited to 'ansible')
| -rw-r--r-- | ansible/roles/common/tasks/main.yml | 9 | 
1 files changed, 9 insertions, 0 deletions
| diff --git a/ansible/roles/common/tasks/main.yml b/ansible/roles/common/tasks/main.yml index 562af85..7b402c3 100644 --- a/ansible/roles/common/tasks/main.yml +++ b/ansible/roles/common/tasks/main.yml @@ -4,3 +4,12 @@    - git-all    - git-gondul    git: repo={{ git_repo }} dest=/opt/gondul update=no accept_hostkey=yes version={{ git_branch }} + +- name: Install basic packages +  action: > +    {{ ansible_pkg_mgr }} name={{ item }} state=present update_cache=yes +  with_items: +    - curl +    - vim +    - git +    - iptables-persistent
\ No newline at end of file | 
