summaryrefslogtreecommitdiff
path: root/ep_cloud.yml
diff options
context:
space:
mode:
authorAdam Olech <nddr89@gmail.com>2021-03-14 00:10:49 +0100
committerAdam Olech <nddr89@gmail.com>2021-03-14 00:10:49 +0100
commit01245218702ab59084432b1812fc275601d7aea3 (patch)
tree0a81c804c6ceb1b305bec139aee22bab149cb082 /ep_cloud.yml
Initial commit
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