summaryrefslogtreecommitdiffstats
path: root/include/ruby/io.h
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-12-09 15:46:45 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-12-09 15:46:45 +0000
commit67b531af5f87fe2a4b1370b15289fc494f29bc7a (patch)
tree8947826c6f45d2dba805e83d41a8ebf4db98b10c /include/ruby/io.h
parentdab9f547c29974893af9166bf750786250c43cdf (diff)
downloadruby-67b531af5f87fe2a4b1370b15289fc494f29bc7a.tar.gz
ruby-67b531af5f87fe2a4b1370b15289fc494f29bc7a.tar.xz
ruby-67b531af5f87fe2a4b1370b15289fc494f29bc7a.zip
* node.c (dump_node): fixed for long members.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@26054 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include/ruby/io.h')
0 files changed, 0 insertions, 0 deletions
>125 126 127 128 129
.\"
.hys 50
.TH "lg.conf" "5" "22 Jan 2001"
.SH NAME
lg.conf \- looking glass configuration file
.SH DESCRIPTION
.B lg.conf
contains configuration for the looking glass scripts.
.PP
The syntax is that of
.IR perl (1).
It is used to set variables to affect run-time behavior or to locate resources.
.\"
.SH VARIABLES
The following variables are used (alphabetically):
.Bl -tag -width flag
.\"
.TP
.B LG_AS_REG
*** not implemented.
.\"
.TP
.B LG_CACHE_DIR
Sets the location of the cache directory.  The looking glass uses this
to hold lock files, log files, and output from cached commands.
.sp
Default: ./tmp
.sp
Note that the default is relative to the directory where 
.IR lg.cgi
runs in the server's document root (eg: /usr/local/www/data/lg/tmp).
.\"
.TP
.B LG_CACHE_TIME
Sets the number of seconds that the looking glass should cache output from
commands that tend to produce a lot of output, such as 'show ip bgp
dampened-paths'.
.sp
Default: 600
.\"
.TP
.B LG_CLOGINRC
Defines the
.BR cloginrc (5)
that the looking glass should use.  The path may be relative to the directory
where the CGI scripts run in the server's document root.
.sp
Default: @prefix@/.cloginrc
.sp
Note that the .cloginrc must be readable by the user or group that will be
running the CGI and that
.BR clogin (1)
will not allow a world readable
.IR .cloginrc .
The user is normally that of the http server (httpd).
.\"
.TP
.B LG_IMAGE
Defines a html image tag (<img>) which, if defined, will be included at
the top of the looking glass pages.  It may contain any html as it is
simply handed off to print().
.sp
Example: $LG_IMAGE="<img src=/icons/rancid.gif hspace=0>\n <font size=+2>FOO</font>";
.\"
.TP
.B LG_LOG
Defines the fully qualified path name for the log file or the
.BR syslog (3)
facility to use for logging.  For syslog, the argument is the lowercase name
of a syslog facility (see syslog.h) without the 'LOG_' prefix.
.sp
Example: local0
.sp
Default: $LG_CACHE_DIR/lg.log
.\"
.TP
.B LG_ROUTERDB
Sets the location for the
.IR router.db
file in rancid's
.BR router.db (5)
format.  It lists the devices that should be available to the looking glass
users.  Only those devices of supported types and with status 'up' are made
available.  If not defined and the default file does not exist, the looking
glass will compile a list from the router.db files of all the groups present
in rancid, that is a concatenation of $BASEDIR/*/router.db.
.sp
Default: @prefix@/util/lg/router.db
.sp
Note that if the concatenation method is used, it may be necessary to alter
the mode of the router.db files in the rancid group directories, since the
default umask is 027 (see
.BR env (5)).
.\"
.TP
.B LG_SINGLE
*** not implemented.
.\"
.TP
.B PATH
Is a colon separate list of directory pathnames in the the file system
where rancid's login scripts,
.IR clogin (1)
etc. )
and programs needed within these, such as
.IR telnet (1),
are located.
Its value is set by configure.  Should it be necessary to modify PATH,
note that it must include $BASEDIR/bin (see above).
.\"
.El
.\"
.SH ERRORS
.B lg.conf
is interpreted directly by 
.IR perl (1),