summaryrefslogtreecommitdiff
path: root/ep_cloud.yml
blob: f276eb2a79a0176a47286f0c26b288d13d25ddb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
---

- name: Manage extinct_potato's personal cloud
  hosts: all

  tasks:
    - name: Ensure Python3 is default
      become: yes
      community.general.alternatives:
        name: python
        path: /usr/bin/python3
        link: /usr/bin/python

    - name: Install GIT
      become: yes
      apt:
        name: git
        state: present
        update_cache: yes