diff options
author | Mike Fulbright <msf@redhat.com> | 1999-12-07 16:42:38 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 1999-12-07 16:42:38 +0000 |
commit | 58a958eb4de9965d10aeee99109a96e540cdf4cd (patch) | |
tree | 8f215c00df1813ce658f89a04cbd8608f2b91e68 /docs | |
parent | 84cda6e181709f2fd710d024a1839ee75cdf4bf6 (diff) | |
download | anaconda-58a958eb4de9965d10aeee99109a96e540cdf4cd.tar.gz anaconda-58a958eb4de9965d10aeee99109a96e540cdf4cd.tar.xz anaconda-58a958eb4de9965d10aeee99109a96e540cdf4cd.zip |
Added short reconfig-mode docs
Diffstat (limited to 'docs')
-rw-r--r-- | docs/reconfig-mode | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/docs/reconfig-mode b/docs/reconfig-mode new file mode 100644 index 000000000..fa3265820 --- /dev/null +++ b/docs/reconfig-mode @@ -0,0 +1,29 @@ +Reconfig mode +------------- + +12/7/1999 Michael Fulbright + +Reconfig mode is intended to allow localized customization of a pre-installed +Red Hat Linux box by the first time user of the machine. Properties like +keyboard mapping, timezone, and network config are edittable the first +time the computer is booted. + +Reconfig mode uses the same sources as the anaconda installer. When anaconda +is run in reconfig mode (using the --reconfig command line option) the +user is prompted for various configuration details. + +The standard way of setting up anaconda for reconfig mode is to create +the file + +/etc/reconfigSys + +as part of the installation process. This can easily be done as part of the +kickstart procedure with a %post section at the end of the ks.cfg file: + +%post +touch /etc/reconfigSys + +The /etc/rc.d/init.d/reconfig init script is run and it tests for the +existence of the /etc/reconfigSys file. If it exists then anaconda is +run with the --reconfig option. + |