There's no mechanism for pre-seeding the install options, but it wouldn't be very difficult to change it to do that. It's just a bash script, and a lot of the code is for user interaction to put values into variables such as which partitions and filesystems to use. I'd recommend going with the cli script (/usr/bin/refractainstaller). You could remove large portions of code and replace them wtih something like:
- Code:
some_variable="whatever_value"
You might want to take a look at copy2partition -
http://sourceforge.net/projects/kyloris/files/It's a simple script based on the same commands that refractainstaller is based on and written by the original author of refractainstaller. It probably works with little or no modification. Compare the excludes list in this with the one in refractainstaller. You might need to add some items.
Oh, right; this one assumes that you already created a partition for the installation. If you want automatic partitioning, you'd have to work parted into the script. I've thought about doing that, but I get nervous at the idea of giving people something that will automatically partition their drive. I'd rather that the user would make their own wrong choice than I make an automatic wrong partitioning choice for them.