search for: make_location

Displaying 4 results from an estimated 4 matches for "make_location".

Did you mean: mail_location
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 30
0
Re: [PATCH] builder: Rearrange how template-building scripts work.
...hen ver >= 6 -> (Same note above.) > +and copy_preseed_to_temporary source = > + (* d-i only works if the file is literally called "/preseed.cfg" *) > + let d = "/tmp" // random8 () ^ ".tmp" in Filename.temp_dir_name instead of /tmp here. > +and make_location os arch = > + match os, arch with > + | CentOS (major, _), Aarch64 -> > + (* XXX This always points to the latest CentOS, so > + * effectively the minor number is always ignored. > + *) > + sprintf "http://mirror.centos.org/altarch/%d/os/aarch64/"...
2017 Jul 10
7
[PATCH 0/5] various improvements for make-template.mk
Hi, this series improves the generation of Debian templates, automating basically almost all the steps needed. Also, it fixes the generation of aarch64 images with NVRAM, which is currently removed too soon, and thus not saved and compressed. Thanks, Pino Toscano (5): builder: templates: update Debian preseed from Stretch builder: templates: generalize debian location builder: templates:
2016 Nov 28
2
[PATCH] builder: Rearrange how template-building scripts work.
...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 >= 5 -> + Some (make_rhel_yum_conf major minor arch) + | _ -> None in + + (* Choo...