This website works better with JavaScript.
首頁
探索
說明
註冊
登入
ka
/
ansible-role-common
關註
1
收藏
0
複製
0
程式碼
問題管理
0
合併請求
0
版本發佈
0
Wiki
Activity
瀏覽代碼
improvments from kita-pro-desktop
master
Markus Katharina Brechtel
2 年之前
父節點
a5af8d4686
當前提交
6d282c59b1
共有
5 個文件被更改
,包括
24 次插入
和
0 次删除
分割檢視
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
查看文件
@@ -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
查看文件
@@ -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
查看文件
@@ -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
查看文件
@@ -0,0 +1,9 @@
---
- name: microcode
apt:
pkg:
- intel-microcode
- amd64-microcode
state: latest
when: microcode_update
+ 3
- 0
vars/main.yaml
查看文件
@@ -24,6 +24,9 @@ debian_common_packages:
- mtr
- oping
# network config
- resolvconf
# documentation
- man-db