Update to 2024-05-06 00:01

This commit is contained in:
Daniel Berteaud
2024-05-06 00:01:59 +02:00
parent 4cf191bd76
commit b1e9f866df
4 changed files with 17 additions and 5 deletions

View File

@@ -37,7 +37,19 @@
pip:
virtualenv: "{{ seafile_root_dir }}"
virtualenv_command: /bin/python3.9 -m venv
name: "{{ seafile_python_libs[seafile_edition] }}"
name: "{{ seafile_python_libs.community }}"
when: seafile_license is not defined
notify:
- restart seafile
- restart seahub
tags: seafile
- name: Install or update python modules in the virtualenv
pip:
virtualenv: "{{ seafile_root_dir }}"
virtualenv_command: /bin/python3.9 -m venv
name: "{{ seafile_python_libs.pro }}"
when: seafile_license is defined
notify:
- restart seafile
- restart seahub