mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2024-11-11 09:56:56 +08:00
10 lines
271 B
Bash
10 lines
271 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [ -f "/etc/sysctl.conf" ]; then
|
||
|
grep -qxF 'vm.max_map_count=262144' /etc/sysctl.conf || echo 'vm.max_map_count=262144' >> /etc/sysctl.conf
|
||
|
sysctl -p /etc/sysctl.conf >/dev/null
|
||
|
else
|
||
|
sysctl -w vm.max_map_count=262144
|
||
|
fi
|
||
|
|
||
|
chown -R 1000:1000 data
|