1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
; si - System Information Viewer - Example Configuration File
; By Joe Turgeon
; Version 1.0
;
;
; si configuration files allow the user to setup a default
; configuration for si to use. Command-line options always
; have higher precedence than configuration files.
;
; si configuration files may be (precedence given to home directory):
; ~/.si.conf
; /etc/si.conf
;
; The following keywords may be used:
; show_system
; show_hardware
; show_memory
; show_kernel
; show_filesys
; show_network
; show_process
; output_file <filename>
; disable_pager
; display_mode <mode>
; disable_cmdline
;
; "output_file" must be followed by a filename.
;
; "mode" must be one of the following values:
; dump
; color
; ps
; html
;
; if you run si as a cgi-bin program, use "disable_cmdline"
; this will prevent malicious users from sending potentially
; damaging commands to si
;
; Every section the user wants displayed must be listed in
; this file. Unlike the command-line options, where none
; listed none defaults to displaying all, none listed
; means none displayed.
;
; When the semicolon (;) is the first character of any line,
; the line is treated as a comment, and ignored.
;
; The following is an example of a possible configuration file:
show_system
show_memory
show_kernel
disable_cmdline
output_file si.output
|