6 lines
115 B
Bash
Executable file
6 lines
115 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [ -f /etc/sysctl.conf.local ]; then
|
|
echo "group:sysctl.local"
|
|
exec cat /etc/sysctl.conf.local
|
|
fi
|