From: Ullli Date: Tue, 2 Jun 2026 06:41:28 +0000 (+0200) Subject: Vorbereitung von Tryton Task X-Git-Url: https://freie-schul-it.de/gitweb/fsit_smgt.git/commitdiff_plain/11f230110c4d437e20ce4dd2447210d3caceec51?ds=sidebyside Vorbereitung von Tryton Task --- 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 +