aboutsummaryrefslogtreecommitdiffstats
path: root/ansible/roles/common/tasks/main.yml
blob: e573383a54552da0ed2f318108166857b22ae161 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
- name: Gondul-repo
  become: true
  tags:
  - git-all
  - git-gondul
  git: repo={{ git_repo }} dest=/opt/gondul update=no accept_hostkey=yes version={{ git_branch }}

- name: Install basic packages
  apt:
      name: [
          'curl',
          'vim',
          'git',
          'iptables-persistent']
      state: present