From f61b2436f1f243263508737950c8e24564bfd236 Mon Sep 17 00:00:00 2001 From: Jeffrey Townsend Date: Thu, 20 Oct 2016 21:15:05 +0000 Subject: [PATCH] Commit the sysctl settings prior to first mount. --- packages/base/all/boot.d/src/50.initmounts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/base/all/boot.d/src/50.initmounts b/packages/base/all/boot.d/src/50.initmounts index 71f7410f..48717381 100755 --- a/packages/base/all/boot.d/src/50.initmounts +++ b/packages/base/all/boot.d/src/50.initmounts @@ -1,6 +1,10 @@ #!/bin/sh . /lib/lsb/init-functions + +# Apply the existing sysctl settings prior to first mount. +sysctl --quiet --system + log_action_begin_msg "Mounting filesystems..." onl-mounts -q mount all log_action_end_msg 0