-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs(pillar.example): add more detail
- Loading branch information
Beau Bilyeu
committed
Sep 23, 2021
1 parent
3e33f19
commit 48442fc
Showing
1 changed file
with
8 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,19 @@ | ||
--- | ||
sysctl: | ||
# override formula-related parameters | ||
lookup: | ||
pkg: procps-ng | ||
config: | ||
# directory to store config files | ||
location: '/etc/sysctl.d' | ||
|
||
# configure kernel state defaults | ||
params: | ||
# store 'fs.file-max: 100000' in the specified file | ||
fs.file-max: | ||
value: 100000 | ||
# suffixes file name to config:location above | ||
config: fs.conf | ||
# store 'vm.swappiness: 20' in salt-chosen file | ||
# (this is usually 99-salt.conf in sysctl dir) | ||
vm.swappiness: 20 |