From bfa71df9fab283638a50c2f6e0ba79c7cf8ebe97 Mon Sep 17 00:00:00 2001 From: Bertrand Benjamin Date: Sat, 25 Aug 2018 17:57:59 +0200 Subject: [PATCH] Python for Choux --- Choux.yml | 1 + tasks/arch_python.yml | 9 +++++++++ 2 files changed, 10 insertions(+) create mode 100644 tasks/arch_python.yml diff --git a/Choux.yml b/Choux.yml index 77b7004..b4a2c4d 100644 --- a/Choux.yml +++ b/Choux.yml @@ -12,6 +12,7 @@ - include: tasks/users.yml - include: tasks/sudo.yml - include: tasks/ssh.yml + - include: tasks/arch_python.yml - include: tasks/arch_aur.yml - include: tasks/arch_gnome.yml - include: tasks/arch_graphicals.yml diff --git a/tasks/arch_python.yml b/tasks/arch_python.yml new file mode 100644 index 0000000..ee9dd80 --- /dev/null +++ b/tasks/arch_python.yml @@ -0,0 +1,9 @@ +--- +- name: Install python env + pacman: + name: "{{ item }}" + state: present + with_items: + - python + - python-virtualenv +