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.
|
- ---
-
- - 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
|