@@ -27,3 +27,5 @@ debian_security_distribution: "{{debian_distribution}}-security" | |||||
debian_sources: true | debian_sources: true | ||||
debian_backports_sources: "{{debian_sources}}" | debian_backports_sources: "{{debian_sources}}" | ||||
debian_security_sources: "{{debian_sources}}" | debian_security_sources: "{{debian_sources}}" | ||||
microcode_update: false |
@@ -19,6 +19,8 @@ | |||||
- import_tasks: keyboard_configuration.yaml | - import_tasks: keyboard_configuration.yaml | ||||
when: not ansible_bender is defined | when: not ansible_bender is defined | ||||
- import_tasks: network.yaml | |||||
# packages setup | # packages setup | ||||
- import_tasks: debian_repos.yaml | - import_tasks: debian_repos.yaml | ||||
when: | when: | ||||
@@ -0,0 +1,8 @@ | |||||
--- | |||||
- name: link resolv.conf | |||||
file: | |||||
src: /run/resolvconf/resolv.conf | |||||
dest: /etc/resolv.conf | |||||
state: link | |||||
force: true |
@@ -0,0 +1,9 @@ | |||||
--- | |||||
- name: microcode | |||||
apt: | |||||
pkg: | |||||
- intel-microcode | |||||
- amd64-microcode | |||||
state: latest | |||||
when: microcode_update |
@@ -24,6 +24,9 @@ debian_common_packages: | |||||
- mtr | - mtr | ||||
- oping | - oping | ||||
# network config | |||||
- resolvconf | |||||
# documentation | # documentation | ||||
- man-db | - man-db | ||||