9 lines
144 B
Plaintext
9 lines
144 B
Plaintext
|
if [ ! -f etc/sysconfig/nfs-server ]; then
|
||
|
cat > etc/sysconfig/nfs-server << "EOF"
|
||
|
PORT="2049"
|
||
|
PROCESSES="8"
|
||
|
QUOTAS="no"
|
||
|
KILLDELAY="10"
|
||
|
EOF
|
||
|
fi
|