aboutsummaryrefslogtreecommitdiffstats
path: root/roles/setup_python
diff options
context:
space:
mode:
authorbinary <me@rgoncalves.se>2020-06-30 19:24:22 +0200
committerbinary <me@rgoncalves.se>2020-06-30 19:24:22 +0200
commit68c01a04cd6268c1dee66678c258cd4c240d5bb1 (patch)
tree1419eec22fa637159ba5e61ae1a6d9e11408a506 /roles/setup_python
downloadinfrastructure-68c01a04cd6268c1dee66678c258cd4c240d5bb1.tar.gz
Cleanup for public release
Diffstat (limited to 'roles/setup_python')
-rw-r--r--roles/setup_python/tasks/main.yml21
1 files changed, 21 insertions, 0 deletions
diff --git a/roles/setup_python/tasks/main.yml b/roles/setup_python/tasks/main.yml
new file mode 100644
index 0000000..033981d
--- /dev/null
+++ b/roles/setup_python/tasks/main.yml
@@ -0,0 +1,21 @@
+
+# =========================================================================== #
+# __ __ __
+# _________ / /__ ____ __ __/ /_/ /_ ____ ____
+# / ___/ __ \/ / _ \ / __ \/ / / / __/ __ \/ __ \/ __ \
+# / / / /_/ / / __/ / /_/ / /_/ / /_/ / / / /_/ / / / /
+# /_/ \____/_/\___(_) / .___/\__, /\__/_/ /_/\____/_/ /_/
+# /_/ /____/
+#
+# =========================================================================== #
+
+---
+- name: Check installation of python3-pip
+ package:
+ name: python3-pip
+ state: present
+
+- name: Check installation of lxml
+ package:
+ name: python-lxml
+ state: present
remember that computers suck.