Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

debian_packages.yaml 406B

1234567891011121314151617181920
  1. ---
  2. - name: base packages
  3. apt:
  4. pkg: "{{ debian_base_packages }}"
  5. when: debian_base_packages is defined
  6. - name: boot packages
  7. apt:
  8. pkg: "{{ debian_boot_packages }}"
  9. when: debian_boot_packages is defined
  10. - name: common packages
  11. apt:
  12. pkg: "{{ debian_common_packages }}"
  13. - name: custom packages
  14. apt:
  15. pkg: "{{ debian_custom_packages }}"
  16. when: debian_custom_packages is defined