From 11f230110c4d437e20ce4dd2447210d3caceec51 Mon Sep 17 00:00:00 2001 From: Ullli Date: Tue, 2 Jun 2026 08:41:28 +0200 Subject: [PATCH] Vorbereitung von Tryton Task --- tasks/tryton.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 tasks/tryton.yml diff --git a/tasks/tryton.yml b/tasks/tryton.yml new file mode 100644 index 0000000..b5bdadb --- /dev/null +++ b/tasks/tryton.yml @@ -0,0 +1,19 @@ +--- +- name: install server specific packages + ansible.builtin.apt: + update_cache: yes + pkg: + - python3-pip + - python3-virtualenv + +- name: create dir for virtualenv + ansible.builtin.file: + path: /home/ansible/schulmgt-env + state: directory + +- name: install list of packages _via pip_ # works different with debian 12 + ansible.builtin.pip: + name: trytond + virtualenv: /home/ansible/schulmgt-env + state: latest + -- 2.39.5