mirror of
https://github.com/status-im/ansible-role-mongodb.git
synced 2025-01-27 13:25:48 +00:00
11 lines
205 B
Bash
11 lines
205 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [ -d /sys/kernel/mm/transparent_hugepage ]; then
|
||
|
thp_path=/sys/kernel/mm/transparent_hugepage
|
||
|
else
|
||
|
return 0
|
||
|
fi
|
||
|
|
||
|
echo 'never' > ${thp_path}/enabled
|
||
|
echo 'never' > ${thp_path}/defrag
|