選択できるのは25トピックまでです。
トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
このリポジトリはアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュや、課題・プルリクエストのオープンはできません。
|
- ---
-
- - name: base packages
- apt:
- pkg: "{{ debian_base_packages }}"
- when: debian_base_packages is defined
-
- - name: boot packages
- apt:
- pkg: "{{ debian_boot_packages }}"
- when: debian_boot_packages is defined
-
- - name: common packages
- apt:
- pkg: "{{ debian_common_packages }}"
-
- - name: custom packages
- apt:
- pkg: "{{ debian_custom_packages }}"
- when: debian_custom_packages is defined
|