tests/test_debs.sh: verify that autoconfig.functions can be read, otherwise fail
[grml-autoconfig.git] / autoconfig
1 # Filename:      /etc/grml/autoconfig
2 # Purpose:       global configuration for grml-autoconfig
3 # Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
4 # Bug-Reports:   see http://grml.org/bugs/
5 # License:       This file is licensed under the GPL v2.
6 ################################################################################
7
8 ################################################################################
9 # Notice: Please do not edit this file! Use grml-autoconfig or
10 # /etc/grml/autoconfig.local instead!
11 ################################################################################
12
13
14 ################################################################################
15 # Notice: you can configure grml-autoconfig via adjusting the following values.
16 # Set them to 'yes' to activate them and to 'no' to deactivate them.
17 # But please notice that some options might require an additional bootparam
18 # ("cheatcode") anyway, some options just de-/activate a check!
19 #
20 # Take a look at the script 'grml-autoconfig' as well!
21 ################################################################################
22
23 ## These are the options you might want to adjust: #############################
24
25 # set console font, default: Lat15-Terminus16
26 # CONSOLEFONT='iso15graf-16'
27
28 # check for frequency-scalable CPU and activate cpydyn/powernowd (default: yes)
29 CONFIG_CPU='yes'
30
31 # create/regenerate /etc/fstab using [grml-]rebuildfstab?
32 CONFIG_FSTAB='yes'
33 # define uid for rebuildfstab used in /etc/fstab (default: grml):
34 CONFIG_FSTAB_USER='grml'
35 # define guid for rebuildfstab used in /etc/fstab (default: users):
36 CONFIG_FSTAB_GROUP='users'
37
38 # load ACPI modules (default: yes)
39 CONFIG_ACPI='yes'
40
41 # start syslog-ng (default: yes)
42 CONFIG_SYSLOG='yes'
43
44 # start gpm (default: yes)
45 CONFIG_GPM='yes'
46
47 ################################################################################
48 # Notice! Do not touch the following options except you really know
49 # what you are doing!
50 CONFIG_AUTOMOUNT='yes'        # automounting of device labeled GRMLCFG
51 CONFIG_BLANKING='yes'         # check for bootoption noblank to disable console blanking
52 CONFIG_CONFIG='yes'           # do we want config unpacking to work?
53 CONFIG_CONSOLE='yes'          # activate mgetty when using console=... as bootparam
54 CONFIG_CONFIGFS='yes'         # automatically mount configfs
55 CONFIG_BRLTTY='yes'           # automatically start brltty if a brltty option is specified in /proc/cmdline
56 CONFIG_DEBOOTSTRAP='yes'      # support automatic installation of Debian via grml-deboostrap
57 CONFIG_DEBNET='yes'           # search for /etc/network/interfaces on partitions and set up network afterwards
58 CONFIG_DEBS='yes'             # check for bootoption debs for installing .debs
59 CONFIG_DEBUG='yes'            # activate start of shells during startup at several stages
60 CONFIG_DISTCC='yes'           # activate and setup distcc through bootparam distcc=$NETWORK,$INTERFACE
61 CONFIG_DISTRI='yes'           # support some customization via bootoption distri
62 CONFIG_DMA='yes'              # Enable DMA for all IDE drives
63 CONFIG_DMRAID='yes'           # support for dmraid
64 CONFIG_EXTRACT='yes'          # specify which (only in combination with bootparam myconfig/netconfig useful)
65 CONFIG_FAST='yes'             # skip startup of w3m on tty1
66 CONFIG_FINDDCSDIR='yes'       # search for a debs, config, scripts directory
67 CONFIG_FIX_PASSWD='yes'       # fix unionfs-problem with passwd
68 CONFIG_FIX_UNIONFS='yes'      # fix/workaround for unionfs
69 CONFIG_FWTIMEOUT='yes'        # set timeout for firmware loading
70 CONFIG_HOMEDIR='yes'          # check for persistent homedir option
71 CONFIG_HOSTNAME='yes'         # set hostname to 'grml' on systems running from CD
72 CONFIG_KERNEL='yes'           # display information on running kernel
73 CONFIG_LANGUAGE='yes'         # allow language specification via commandline
74 CONFIG_LD_MOD='yes'           # run ldconfig and depmod on systems running from harddisk; remove /etc/grml.first.boot for forcing
75 CONFIG_LOG='yes'              # DEBUG=/dev/null or logfile int /tmp/...
76 CONFIG_LVM='yes'              # logical volume setup
77 CONFIG_MIXER='yes'            # set audio volumes [only in live-cd mode relevant, except for bootoption nosound]
78 CONFIG_MODEM='yes'            # check for AC'97 Modem Controller modem
79 CONFIG_MODULES='yes'          # load modules specified in /etc/grml/modules
80 CONFIG_MOUSE='yes'            # show mouse information (expert-mode)
81 CONFIG_MYCONFIG='yes'         # check if we want the config floppy
82 CONFIG_MYPATH='yes'           # provide setting additional paths via bootoption mypath
83 CONFIG_NETCONFIG='yes'        # download configuration archive provided by bootoption netconfig=...
84 CONFIG_NETSCRIPT='yes'        # download and run script/executable provided by bootoption netscript=...
85 CONFIG_NETIPV6='yes'          # check for bootparam ipv6
86 CONFIG_PARTCONF='yes'         # do we want partconf to work?
87 CONFIG_PASSWD='yes'           # set password via bootparam passwd
88 CONFIG_SCRIPTS='yes'          # execute scripts from the scripts option
89 CONFIG_SERVICES='yes'         # check for services to run, provided via bootparam
90 CONFIG_SMALL='yes'            # use a less "bloat" /etc/inittab for small computer with less RAM
91 CONFIG_STATS='yes'            # Report stats to stats server
92 CONFIG_SSH='yes'              # check for bootparam ssh
93 CONFIG_SWRAID='yes'           # check for software raid devices [only in live-mode]
94 CONFIG_TESTCD='yes'           # CD checker
95 CONFIG_TIME='yes'             # set clock, check for bootparam utc/gmt [only in live-mode]
96 CONFIG_TIMEZONE='yes'         # get bootparam 'tz' and set it as /etc/localtime [only in live-mode]
97 CONFIG_TOHD='yes'             # bootoption tohd=...
98 CONFIG_VIRTUALBOX_SHARED_FOLDERS='yes' # set up shared folders in VirtualBox environment
99 CONFIG_VNC='yes'              # check for bootparam vnc
100 CONFIG_WELCOME='yes'          # play welcome sound (audio)
101 CONFIG_WONDERSHAPER='yes'     # start wondershaper with options provided via bootparam
102 CONFIG_XSTARTUP='yes'         # start X window system via grml-x [only in live-mode]
103
104
105 # config for local configuration file
106
107 CONFIG_AUTOCONFIG_LOCAL='/etc/grml/autoconfig.local'
108
109 [ -r ${CONFIG_AUTOCONFIG_LOCAL} ] && . ${CONFIG_AUTOCONFIG_LOCAL}
110
111 ## END OF FILE #################################################################