選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
このリポジトリはアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュや、課題・プルリクエストのオープンはできません。

21 行
406B

  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