이 웹사이트는 자바스크립트 활성화가 필요합니다.
홈
탐색
도움말
가입하기
로그인
ka
/
ansible-role-common
보기
1
좋아요
0
포크
0
코드
이슈
0
풀 리퀘스트
0
릴리즈
0
위키
활동
소스 검색
inotfy watch tweak
master
Markus Katharina Brechtel
2 년 전
부모
cd7f76b74c
커밋
946b3d9312
3개의 변경된 파일
과
10개의 추가작업
그리고
0개의 파일을 삭제
분할 보기
Diff Options
Show Stats
Download Patch File
Download Diff File
+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