Add inotify for jetbrains IDE's

This commit is contained in:
Przemek Grondek 2021-12-03 12:02:38 +01:00 committed by Przemyslaw Grondek
parent 95f04cd9ec
commit a0717e450f
2 changed files with 14 additions and 0 deletions

View File

@ -1,2 +1,9 @@
--- ---
- stat:
path: /usr/local/bin/jetbrains-toolbox
register: toolbox_binary
- import_tasks: jetbrains-toolbox.yml - import_tasks: jetbrains-toolbox.yml
when: not toolbox_binary.stat.exists
- import_tasks: system-setup.yml

View File

@ -0,0 +1,7 @@
---
- name: "Increase inotify for Jetbrains IDE's"
become: yes
ansible.posix.sysctl:
name: fs.inotify.max_user_watches
value: 524288
state: present