search for: make_kickstart_or_preseed

Displaying 2 results from an estimated 2 matches for "make_kickstart_or_preseed".

2016 Dec 02
1
[PATCH NOT TO BE APPLIED] builder: make-template: Add --encrypted
I was attempting one way to solve: https://bugzilla.redhat.com/show_bug.cgi?id=1400332 "RFE: virt-builder should support templates with encrypted filesystems" However this approach doesn't really work because templates containing encrypted partitions cannot be compressed, and therefore the guest template would be a multi-gigabyte download. I better approach will likely be to use
2016 Nov 28
2
[PATCH] builder: Rearrange how template-building scripts work.
...ing.concat ":" (paths @ [orig_path]) in + Unix.putenv "PATH" new_path in + + (* For OSes which require a kickstart, this generates one. + * For OSes which require a preseed file, this returns one (we + * don't generate preseed files at the moment). + *) + let ks = make_kickstart_or_preseed os arch in + + (* Find the virt-install --location for this OS. *) + let location = make_location os arch in + + (* RHEL guests require alternate yum configuration pointing to + * Red Hat's internal servers. + *) + let yum_conf = + match os with + | RHEL (major, minor) when major...