about summary refs log tree commit diff
path: root/core-services/08-sysctl.sh
blob: 10aa73ad2fb1739c415867293d5a2430f6823fd1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# vim: set ts=4 sw=4 et:

if [ -x /sbin/sysctl -o -x /bin/sysctl ]; then
    msg "Loading sysctl(8) settings...\n"

    if sysctl -V >/dev/null 2>&1; then
        sysctl --system
    else
        # Fallback for busybox sysctl
        for i in /run/sysctl.d/*.conf \
            /etc/sysctl.d/*.conf \
            /usr/local/lib/sysctl.d/*.conf \
            /usr/lib/sysctl.d/*.conf \
            /etc/sysctl.conf; do

            if [ -e "$i" ]; then
                printf '* Applying %s ...\n' "$i"
                sysctl -p "$i"
            fi
        done
    fi
fi