76db060afb
* Add README to bootstrap-os role * Rework bootstrap-os once more * Document workarounds for bugs/deficiencies in Ansible modules * Unify and document role variables * Remove installation of additional packages and repositories * Merge Ubuntu and Debian tasks * Remove pipelining setting from default playbooks * Fix OpenSUSE not running its required tasks
10 lines
254 B
YAML
10 lines
254 B
YAML
---
|
|
# OpenSUSE ships with Python installed
|
|
|
|
# Without this package, the get_url module fails when trying to handle https
|
|
- name: Install python-cryptography
|
|
zypper:
|
|
name: python-cryptography
|
|
state: present
|
|
update_cache: true
|
|
become: true
|