summaryrefslogtreecommitdiff
path: root/ep_cloud.yml
diff options
context:
space:
mode:
Diffstat (limited to 'ep_cloud.yml')
-rw-r--r--ep_cloud.yml19
1 files changed, 19 insertions, 0 deletions
diff --git a/ep_cloud.yml b/ep_cloud.yml
new file mode 100644
index 0000000..f276eb2
--- /dev/null
+++ b/ep_cloud.yml
@@ -0,0 +1,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