Skip to content
Snippets Groups Projects
Commit 65e2e26c authored by Jörg Sachse's avatar Jörg Sachse
Browse files

feat: install passlib library for user creation, because crypt library is...

feat: install passlib library for user creation, because crypt library is deprecated and will be removed from Python 3.13
parent 74569780
No related branches found
No related tags found
No related merge requests found
--- ---
### PAKETINSTALLATIONEN SUBMISSION APPLICATION ### ### PAKETINSTALLATIONEN SUBMISSION APPLICATION ###
- name: install Ansible prerequisites
ansible.builtin.package:
name: 'python3-passlib' # Python crypt is deprecated for user creation, use passlib instead
state: present
update_cache: true
- name: Install/Update curl, libxerces-c-dev, rsync, tar, unzip, imagemagick, libtiff-tools, libxml2-utils - name: Install/Update curl, libxerces-c-dev, rsync, tar, unzip, imagemagick, libtiff-tools, libxml2-utils
ansible.builtin.apt: ansible.builtin.apt:
name: [ name: [
...@@ -20,7 +26,7 @@ ...@@ -20,7 +26,7 @@
'libtiff-tools' 'libtiff-tools'
] ]
state: present state: present
update_cache: "yes" update_cache: true
- name: uninstall outdated perl-modules packages from Debian 12 Bookworm VMs - name: uninstall outdated perl-modules packages from Debian 12 Bookworm VMs
ansible.builtin.apt: ansible.builtin.apt:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment