summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>2001-08-24 19:19:47 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>2001-08-24 19:19:47 +0000
commitd0f998d76d89129be6dac46ce54aabfa44d02d67 (patch)
tree1bd48899ab12e6970bb6dd1e8bc1cc22e970a6b8
parent1bbaf366388699c5804d4ed51407011204b0d8ec (diff)
from Brian J. Kifiak <bk@rt.fm>
-rw-r--r--share/man/man5/Makefile4
-rw-r--r--share/man/man5/wsconsctl.conf.573
2 files changed, 75 insertions, 2 deletions
diff --git a/share/man/man5/Makefile b/share/man/man5/Makefile
index a485437ea1b..89e4f8ad042 100644
--- a/share/man/man5/Makefile
+++ b/share/man/man5/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.21 2001/07/08 14:31:23 dhartmei Exp $
+# $OpenBSD: Makefile,v 1.22 2001/08/24 19:19:46 mickey Exp $
# $NetBSD: Makefile,v 1.14 1995/05/11 23:13:15 cgd Exp $
# missing: dump.5 plot.5
@@ -8,7 +8,7 @@ MAN= a.out.5 acct.5 bsd.port.mk.5 core.5 dir.5 disktab.5 ethers.5 fbtab.5 \
link.5 login.conf.5 moduli.5 motd.5 netgroup.5 networks.5 passwd.5 \
passwd.conf.5 nat.conf.5 pf.conf.5 phones.5 printcap.5 protocols.5 \
remote.5 resolv.conf.5 rpc.5 services.5 shells.5 stab.5 sysctl.conf.5 \
- types.5 utmp.5
+ types.5 utmp.5 wsconsctl.conf.5
MLINKS= dir.5 dirent.5 fs.5 inode.5 utmp.5 wtmp.5 utmp.5 lastlog.5
MLINKS+= hosts.equiv.5 .rhosts.5
MLINKS+= resolv.conf.5 resolver.5
diff --git a/share/man/man5/wsconsctl.conf.5 b/share/man/man5/wsconsctl.conf.5
new file mode 100644
index 00000000000..c95362f28fd
--- /dev/null
+++ b/share/man/man5/wsconsctl.conf.5
@@ -0,0 +1,73 @@
+.\" $OpenBSD: wsconsctl.conf.5,v 1.1 2001/08/24 19:19:46 mickey Exp $
+.\"
+.\" Copyright (c) 2001 Brian J. Kifiak <bk@rt.fm>
+.\" All rights reserved.
+.\"
+.\" Based on sysctl.conf.5 found in OpenBSD 2.3+:
+.\" Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com>
+.\" All rights reserved.
+.\"
+.\" Redistribution and use in source and binary forms, with or without
+\" modification, are permitted provided that the following conditions
+.\" are met:
+.\" 1. Redistributions of source code must retain the above copyright
+.\" notice, this list of conditions and the following disclaimer.
+.\" 2. Redistributions in binary form must reproduce the above copyright
+.\" notice, this list of conditions and the following disclaimer in the
+.\" documentation and/or other materials provided with the distribution.
+.\" 3. The name of the author may not be used to endorse or promote products
+.\" derived from this software without specific prior written permission.
+.\"
+\" THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
+.\" INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
+.\" AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
+.\" THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+.\" EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+.\" PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
+.\" OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+.\" WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
+.\" OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+.\" ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+.\"
+.Dd August 18, 2001
+.Dt WSCONSCTL.CONF 5
+.Os
+.Sh NAME
+.Nm wsconsctl.conf
+.Nd wsconsctl variables to set at system startup
+.Sh DESCRIPTION
+.Nm
+contains a list of
+.Xr wsconsctl 8
+variable assignments that is read at system startup by
+.Xr rc 8
+during the boot sequence.
+.Pp
+The file is made up of
+.Xr wsconsctl 8
+variable assignments
+.Pq Ar variable Ns No = Ns Ar value
+with comments designated by a hash mark
+.Pq Sq # .
+.Sh EXAMPLES
+To load a Russian keyboard encoding, one would use the following line:
+.Bd -literal -offset indent
+keyboard.encoding=ru
+.Ed
+.Pp
+To set the screen burner timeout to 60 seconds, the following can be used:
+.Bd -literal -offset indent
+display.screen_off=60000
+.Ed
+.Sh FILES
+.Bl -tag -width /etc/wsconsctl.conf -compact
+.It Pa /etc/sysctl.conf
+.El
+.Sh SEE ALSO
+.Xr rc 8 ,
+.Xr wsconsctl 8
+.Sh HISTORY
+A
+.Nm
+file first appeared in
+.Ox 3.0 .