summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorDieter Plaetinck <dieter@plaetinck.be>2009-07-21 18:51:33 +0200
committerDieter Plaetinck <dieter@plaetinck.be>2009-07-21 18:51:33 +0200
commit59d9b7dfd24e53c205cff5a75057e218e781fd1a (patch)
treef80369d205401093804580e3f5f90f4a87909b10 /examples
parentf711f60ecc63dddc8fb1d62fdb4dcfa3a08fa2e2 (diff)
experimental test suite, with one test
Diffstat (limited to 'examples')
-rw-r--r--examples/test-on-sda45
1 files changed, 0 insertions, 45 deletions
diff --git a/examples/test-on-sda b/examples/test-on-sda
deleted file mode 100644
index 45ad187..0000000
--- a/examples/test-on-sda
+++ /dev/null
@@ -1,45 +0,0 @@
-# this config is like fancy-install-on-sda but with small filesystems. very usefull for quickly testing in VM's
-# this config is meant for testing AIF and is not very suited for end users.
-
-phase_finish=(msg_report grub_hack)
-
-
-SOURCE=cd
-FILE_URL=file:///src/core/pkg
-SYNC_URL=
-
-RUNTIME_REPOSITORIES=
-RUNTIME_PACKAGES=
-
-# packages to install
-TARGET_GROUPS=base
-TARGET_PACKAGES_EXCLUDE='reiserfsprogs'
-TARGET_PACKAGES=openssh
-
-# you can optionally also override some functions...
-worker_intro () {
- infofy "Automatic procedure running the test-install-on-sda example config. this will install a system with lvm on top of dm_crypt. THIS WILL ERASE AND OVERWRITE YOUR /DEV/SDA. IF YOU DO NOT WANT THIS PRESS CTRL+C WITHIN 10 SECONDS"
- sleep 10
-}
-
-worker_configure_system () {
- sed -i 's/filesystems/usbinput keymap encrypt lvm2 filesystems/' $var_TARGET_DIR/etc/mkinitcpio.conf
-}
-
-# aif code doesn't nicely update grub config automatically for lvm/dm_crypt systems yet, so we have to do it with this hack
-worker_grub_hack () {
- sed -i 's#root=/dev/sda.*#root=/dev/mapper/cryptpool-cryptroot cryptdevice=/dev/sda2:cryptpool ro#' $var_TARGET_DIR/boot/grub/menu.lst
-}
-
-# These variables are mandatory
-
-GRUB_DEVICE=/dev/sda
-PARTITIONS='/dev/sda 40:ext2:+ *:ext4'
-BLOCKDATA='/dev/sda1 raw no_label ext2;yes;/boot;target;no_opts;no_label;no_params
-/dev/sda2 raw no_label dm_crypt;yes;no_mountpoint;target;no_opts;sda3crypt;-c_aes-xts-plain_-y_-s_512
-/dev/mapper/sda3crypt dm_crypt no_label lvm-pv;yes;no_mountpoint;target;no_opts;no_label;no_params
-/dev/mapper/sda3crypt+ lvm-pv no_label lvm-vg;yes;no_mountpoint;target;no_opts;cryptpool;/dev/mapper/sda3crypt
-/dev/mapper/cryptpool lvm-vg cryptpool lvm-lv;yes;no_mountpoint;target;no_opts;cryptswap;20M|lvm-lv;yes;no_mountpoint;target;no_opts;cryptroot;800M|lvm-lv;yes;no_mountpoint;target;no_opts;crypthome;50M
-/dev/mapper/cryptpool-cryptswap lvm-lv no-label swap;yes;no_mountpoint;target;no_opts;no_label;no_params
-/dev/mapper/cryptpool-cryptroot lvm-lv no_label xfs;yes;/;target;no_opts;no_label;no_params
-/dev/mapper/cryptpool-crypthome lvm-lv no_label xfs;yes;/home;target;no_opts;no_label;no_params'