mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-02 08:42:48 +00:00
sysctl(8) doesn't need '-w' to write to sysctl variables anymore.
This commit is contained in:
parent
04d12c9900
commit
7bbf2ac162
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=79839
@ -38,7 +38,7 @@ if [ -f /etc/sysctl.conf ]; then
|
||||
\#*|'')
|
||||
;;
|
||||
*)
|
||||
sysctl -w ${var}
|
||||
sysctl ${var}
|
||||
;;
|
||||
esac
|
||||
done < /etc/sysctl.conf
|
||||
|
@ -38,7 +38,7 @@ if [ -f /etc/sysctl.conf ]; then
|
||||
\#*|'')
|
||||
;;
|
||||
*)
|
||||
sysctl -w ${var}
|
||||
sysctl ${var}
|
||||
;;
|
||||
esac
|
||||
done < /etc/sysctl.conf
|
||||
|
@ -1,7 +1,7 @@
|
||||
# $FreeBSD$
|
||||
#
|
||||
# This file is read when going to multi-user and its contents piped thru
|
||||
# ``sysctl -w'' to adjust kernel values. ``man 5 sysctl.conf'' for details.
|
||||
# ``sysctl'' to adjust kernel values. ``man 5 sysctl.conf'' for details.
|
||||
#
|
||||
|
||||
#vfs.vmiodirenable=0 # Set to 1 to enable the use of the VM subsystem to
|
||||
|
Loading…
Reference in New Issue
Block a user