使用 JavaScript能使本网站更好的工作。
首页
探索
帮助
注册
登录
ka
/
ansible-role-common
关注
1
点赞
0
派生
0
代码
工单
0
合并请求
0
版本发布
0
百科
动态
浏览代码
inotfy watch tweak
master
Markus Katharina Brechtel
2 年前
父节点
cd7f76b74c
当前提交
946b3d9312
共有
3 个文件被更改
,包括
10 次插入
和
0 次删除
分列视图
Diff 选项
显示统计
下载 Patch 文件
下载 Diff 文件
+2
-0
defaults/main.yaml
+1
-0
tasks/main.yaml
+7
-0
tasks/tweaks.yaml
+ 2
- 0
defaults/main.yaml
查看文件
@@ -31,3 +31,5 @@ debian_security_sources: "{{debian_sources}}"
common_package_intallation: true
microcode_update: false
increase_maximum_inotify_user_watches: true
+ 1
- 0
tasks/main.yaml
查看文件
@@ -28,6 +28,7 @@
when: not ansible_bender is defined
- import_tasks: network.yaml
- import_tasks: tweaks.yaml
# shell setup
- import_tasks: shells/fish.yaml
+ 7
- 0
tasks/tweaks.yaml
查看文件
@@ -0,0 +1,7 @@
---
- name: increase maximum of inotify user watches
ansible.posix.sysctl:
name: fs.inotify.max_user_watches
value: 524288
sysctl_set: yes