summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog3
-rw-r--r--en/appendix/preseed.xml18
2 files changed, 12 insertions, 9 deletions
diff --git a/debian/changelog b/debian/changelog
index 34f63f2b3..8462d16b9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -5,6 +5,9 @@ installation-guide (2008xxxx) UNRELEASED; urgency=low
* Add note about preseeding ownership to preseed-seenflag section, since I
had a user confused by this who hadn't found the note elsewhere
explaining owners.
+ * Use /dev/sda and /dev/sdb in the RAID preseeding example rather than
+ /dev/discs/disc0/disc and /dev/discs/disc1/disc, since the latter
+ devices no longer exist.
[ Frans Pop ]
* Document preseeding of network-console now that its postinst can be
diff --git a/en/appendix/preseed.xml b/en/appendix/preseed.xml
index 64ae92f5d..e75882188 100644
--- a/en/appendix/preseed.xml
+++ b/en/appendix/preseed.xml
@@ -1044,7 +1044,7 @@ Check <filename>/var/log/syslog</filename> if you run into problems.
#d-i partman-auto/method string raid
# Specify the disks to be partitioned. They will all get the same layout,
# so this will only work if the disks are the same size.
-#d-i partman-auto/disk string /dev/discs/disc0/disc /dev/discs/disc1/disc
+#d-i partman-auto/disk string /dev/sda /dev/sdb
# Next you need to specify the physical partitions that will be used.
#d-i partman-auto/expert_recipe string \
@@ -1067,14 +1067,14 @@ Check <filename>/var/log/syslog</filename> if you run into problems.
# &lt;devices&gt; &lt;sparedevices&gt;
# RAID levels 0, 1, 5, 6 and 10 are supported; devices are separated using "#"
#d-i partman-auto-raid/recipe string \
-# 1 2 0 ext3 / \
-# /dev/discs/disc0/part1#/dev/discs/disc1/part1 \
-# . \
-# 1 2 0 swap - \
-# /dev/discs/disc0/part5#/dev/discs/disc1/part5 \
-# . \
-# 0 2 0 ext3 /home \
-# /dev/discs/disc0/part6#/dev/discs/disc1/part6 \
+# 1 2 0 ext3 / \
+# /dev/sda1#/dev/sdb1 \
+# . \
+# 1 2 0 swap - \
+# /dev/sda5#/dev/sdb5 \
+# . \
+# 0 2 0 ext3 /home \
+# /dev/sda6#/dev/sdb6 \
# .
# This makes partman automatically partition without confirmation.