Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/k0ste/ansible-role-sysctl
Ansible role for configure kernel parameters
https://github.com/k0ste/ansible-role-sysctl
Last synced: about 1 month ago
JSON representation
Ansible role for configure kernel parameters
- Host: GitHub
- URL: https://github.com/k0ste/ansible-role-sysctl
- Owner: k0ste
- Created: 2023-03-15T08:40:25.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-12-18T13:29:02.000Z (11 months ago)
- Last Synced: 2023-12-18T15:03:05.229Z (11 months ago)
- Size: 10.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
Awesome Lists containing this project
README
# ansible-sysctl
sysctl - role for configure kernel parameters at runtime and set at boot
(persist parameters)## Requirements for usage
* Ansible 3.0.0
## Example configuration
```yaml
---
sysctl:
# This file will be saved on `sysctl.d`
- file: '99-linux'
# Use this option to ignore errors about unknown keys. Default is 'no'
ignore_errors: 'no'
options:
- name: 'kernel.panic'
value: '0'
- name: 'fs.inotify.max_user_watches'
value: '100000'
```