This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
ka
/
ansible-role-common
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
improvments from kita-pro-desktop
master
Markus Katharina Brechtel
2 years ago
parent
a5af8d4686
commit
6d282c59b1
5 changed files
with
24 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-0
defaults/main.yaml
+2
-0
tasks/main.yaml
+8
-0
tasks/network.yaml
+9
-0
tasks/security.yaml
+3
-0
vars/main.yaml
+ 2
- 0
defaults/main.yaml
View File
@@ -27,3 +27,5 @@ debian_security_distribution: "{{debian_distribution}}-security"
debian_sources: true
debian_backports_sources: "{{debian_sources}}"
debian_security_sources: "{{debian_sources}}"
microcode_update: false
+ 2
- 0
tasks/main.yaml
View File
@@ -19,6 +19,8 @@
- import_tasks: keyboard_configuration.yaml
when: not ansible_bender is defined
- import_tasks: network.yaml
# packages setup
- import_tasks: debian_repos.yaml
when:
+ 8
- 0
tasks/network.yaml
View File
@@ -0,0 +1,8 @@
---
- name: link resolv.conf
file:
src: /run/resolvconf/resolv.conf
dest: /etc/resolv.conf
state: link
force: true
+ 9
- 0
tasks/security.yaml
View File
@@ -0,0 +1,9 @@
---
- name: microcode
apt:
pkg:
- intel-microcode
- amd64-microcode
state: latest
when: microcode_update
+ 3
- 0
vars/main.yaml
View File
@@ -24,6 +24,9 @@ debian_common_packages:
- mtr
- oping
# network config
- resolvconf
# documentation
- man-db