mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 02:17:14 +08:00
14 lines
255 B
Plaintext
14 lines
255 B
Plaintext
post_install() {
|
|
if grep -q "fs.inotify.max_user_watches = 524288" "/etc/sysctl.conf" ; then
|
|
echo "nepomuk optimization found"
|
|
else
|
|
echo "fs.inotify.max_user_watches = 524288" >> /etc/sysctl.conf
|
|
fi
|
|
}
|
|
|
|
|
|
post_upgrade() {
|
|
post_install $1
|
|
}
|
|
|