diff options
author | 2015-01-20 07:00:05 +0000 | |
---|---|---|
committer | 2015-01-20 07:00:05 +0000 | |
commit | 45fb5ed7f5887a3d8ab3c81216946dab59ff4c57 (patch) | |
tree | 0146ae917452cf174c5780231cf6d33ec70bfb76 | |
parent | Move MF_* to message.c too (diff) | |
download | wireguard-openbsd-45fb5ed7f5887a3d8ab3c81216946dab59ff4c57.tar.xz wireguard-openbsd-45fb5ed7f5887a3d8ab3c81216946dab59ff4c57.zip |
Change the machdep.lidsupsend example now that the default setting has been
inverted.
-rw-r--r-- | etc/etc.amd64/sysctl.conf | 2 | ||||
-rw-r--r-- | etc/etc.i386/sysctl.conf | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/etc/etc.amd64/sysctl.conf b/etc/etc.amd64/sysctl.conf index 976c7757e70..189214fac25 100644 --- a/etc/etc.amd64/sysctl.conf +++ b/etc/etc.amd64/sysctl.conf @@ -1,3 +1,3 @@ #machdep.allowaperture=2 # See xf86(4) #machdep.kbdreset=1 # permit console CTRL-ALT-DEL to do a nice halt -#machdep.lidsuspend=1 # laptop lid closes cause a suspend +#machdep.lidsuspend=0 # do not supsend laptop upon lid closing diff --git a/etc/etc.i386/sysctl.conf b/etc/etc.i386/sysctl.conf index 4fa54b258af..9ac919e184a 100644 --- a/etc/etc.i386/sysctl.conf +++ b/etc/etc.i386/sysctl.conf @@ -1,7 +1,7 @@ #machdep.allowaperture=2 # See xf86(4) #machdep.apmhalt=1 # 1=powerdown hack, try if halt -p doesn't work #machdep.kbdreset=1 # permit console CTRL-ALT-DEL to do a nice halt -#machdep.lidsuspend=1 # laptop lid closes cause a suspend +#machdep.lidsuspend=0 # do not supsend laptop upon lid closing #machdep.userldt=1 # allow userland programs to play with ldt, # required by some ports #kern.emul.linux=1 # enable running Linux binaries |