mirror of
https://github.com/status-im/ansible-role-mongodb.git
synced 2025-01-27 05:14:55 +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
|