Skip to content
Snippets Groups Projects
Commit 4d0e0301 authored by Bob Mottram's avatar Bob Mottram
Browse files

Disable nfs insecure locks

parent e5b04a2d
No related branches found
No related tags found
No related merge requests found
......@@ -352,6 +352,15 @@ function upgrade_installation {
echo ''
}
function disable_nfs_insecure_locks {
apt-get -yq install nfs-kernel-server
if grep 'insecure_locks' /etc/exports; then
sed -i 's|,insecure_locks||g' /etc/exports
sed -i 's|insecure_locks,||g' /etc/exports
exportfs -a
fi
}
function setup_firewall {
function_check create_completion_file
create_completion_file
......@@ -379,6 +388,9 @@ function setup_utils {
function_check remove_bluetooth
remove_bluetooth
function_check disable_nfs_insecure_locks
disable_nfs_insecure_locks
function_check turn_off_rsys_logging
turn_off_rsys_logging
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment