diff options
Diffstat (limited to 'nl/appendix/preseed.xml')
-rw-r--r-- | nl/appendix/preseed.xml | 77 |
1 files changed, 42 insertions, 35 deletions
diff --git a/nl/appendix/preseed.xml b/nl/appendix/preseed.xml index e98f417f7..4bf6ff816 100644 --- a/nl/appendix/preseed.xml +++ b/nl/appendix/preseed.xml @@ -1,5 +1,5 @@ <!-- retain these comments for translator revision tracking --> -<!-- original version: 50443 untranslated --> +<!-- original version: 51573 untranslated --> <!-- Be careful with the format of this file as it is parsed to generate @@ -37,6 +37,13 @@ the installation is running. This makes it possible to fully automate most types of installation and even offers some features not available during normal installations. +</para><para> + +Preseeding is not required. If you use an empty preseed file, the installer +will behave just the same way as in a normal manual installation. Each +question you preseed will (if you got it right!) modify the installation in +some way from that baseline. + </para> <sect2 id="preseed-methods"> @@ -858,6 +865,25 @@ d-i mirror/http/proxy string </sect2> + <sect2 id="preseed-time"> + <title>Clock and time zone setup</title> + +<informalexample role="example"><screen> +# Controls whether or not the hardware clock is set to UTC. +d-i clock-setup/utc boolean true + +# You may set this to any valid setting for $TZ; see the contents of +# /usr/share/zoneinfo/ for valid values. +d-i time/zone string US/Eastern + +# Controls whether to use NTP to set the clock during the install +d-i clock-setup/ntp boolean true +# NTP server to use. The default is almost always fine here. +#d-i clock-setup/ntp-server ntp.example.com +</screen></informalexample> + + </sect2> + <sect2 id="preseed-partman"> <title>Partitioning</title> <para> @@ -1026,21 +1052,22 @@ d-i partman/confirm boolean true </sect2> - <sect2 id="preseed-time"> - <title>Clock and time zone setup</title> + <sect2 id="preseed-base-installer"> + <title>Base system installation</title> +<para> -<informalexample role="example"><screen> -# Controls whether or not the hardware clock is set to UTC. -d-i clock-setup/utc boolean true +There is actually not very much that can be preseeded for this stage of the +installation. The only questions asked concern the installation of the kernel. -# You may set this to any valid setting for $TZ; see the contents of -# /usr/share/zoneinfo/ for valid values. -d-i time/zone string US/Eastern +</para> -# Controls whether to use NTP to set the clock during the install -d-i clock-setup/ntp boolean true -# NTP server to use. The default is almost always fine here. -#d-i clock-setup/ntp-server ntp.example.com +<informalexample role="example"><screen> +# Select the initramfs generator used to generate the initrd for 2.6 kernels. +#d-i base-installer/kernel/linux/initramfs-generators string yaird + +# The kernel image (meta) package to be installed; "none" can be used if no +# kernel is to be installed. +#d-i base-installer/kernel/image linux-image-2.6-486 </screen></informalexample> </sect2> @@ -1114,26 +1141,6 @@ $ echo "r00tme" | mkpasswd -s -H MD5 </para> </sect2> - <sect2 id="preseed-base-installer"> - <title>Base system installation</title> -<para> - -There is actually not very much that can be preseeded for this stage of the -installation. The only questions asked concern the installation of the kernel. - -</para> - -<informalexample role="example"><screen> -# Select the initramfs generator used to generate the initrd for 2.6 kernels. -#d-i base-installer/kernel/linux/initramfs-generators string yaird - -# The kernel image (meta) package to be installed; "none" can be used if no -# kernel is to be installed. -#d-i base-installer/kernel/image linux-image-2.6-486 -</screen></informalexample> - - </sect2> - <sect2 id="preseed-apt"> <title>Apt setup</title> <para> @@ -1152,7 +1159,7 @@ earlier questions. You can optionally add other (local) repositories. #d-i apt-setup/use_mirror boolean false # Select which update services to use; define the mirrors to be used. # Values shown below are the normal defaults. -#d-i apt-setup/services-select multi-select security, volatile +#d-i apt-setup/services-select multiselect security, volatile #d-i apt-setup/security_host string security.debian.org #d-i apt-setup/volatile_host string volatile.debian.org @@ -1285,7 +1292,7 @@ d-i grub-installer/with_other_os boolean true </sect2> <sect2 id="preseed-finish"> - <title>Finishing up the first stage install</title> + <title>Finishing up the installation</title> <informalexample role="example"><screen> # Avoid that last message about the install being complete. |