You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
255 B

  1. ---
  2. - name: Ensure zypper cache is updated (SUSE)
  3. zypper_repository:
  4. repo: "*"
  5. runrefresh: yes
  6. - name: Install required packages (SUSE)
  7. package:
  8. name: "{{ item }}"
  9. state: present
  10. with_items:
  11. - python-cryptography
  12. become: true