25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

debian_packages.yaml 547B

12345678910111213141516171819202122232425
  1. ---
  2. - name: debian base packages
  3. apt:
  4. pkg: "{{ debian_base_packages }}"
  5. - name: debian boot packages
  6. apt:
  7. pkg: "{{ debian_boot_packages }}"
  8. when: debian_boot_packages is defined
  9. - name: debian machine packages
  10. apt:
  11. pkg: "{{ debian_machine_packages }}"
  12. when: machine_package_installation
  13. - name: debian common packages
  14. apt:
  15. pkg: "{{ debian_common_packages }}"
  16. when: common_package_intallation
  17. - name: debian custom packages
  18. apt:
  19. pkg: "{{ debian_custom_packages }}"
  20. when: debian_custom_packages is defined