このサイトはJavaScriptを使用しています
ホーム
エクスプローラー
ヘルプ
登録
サインイン
ka
/
ansible-role-common
ウォッチ
1
スター
0
フォーク
0
コード
課題
0
プルリクエスト
0
リリース
0
Wiki
アクティビティ
ソースを参照
inotfy watch tweak
master
Markus Katharina Brechtel
2年前
親
cd7f76b74c
コミット
946b3d9312
3個のファイルの変更
、
10行の追加
、
0行の削除
分割表示
差分オプション
統計情報を表示
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