From 2db6a409a110a70b76f5b6a74aba1b2eb2867c5e Mon Sep 17 00:00:00 2001 From: Joanna Rutkowska Date: Fri, 20 Jan 2012 17:13:08 +0100 Subject: [PATCH] firstboot: use FC15 instead of FC14 BTW: this is very inelegant that we hardcode the name of the default template here. Can we use qvm-get-default template instead? --- firstboot/modules/qubes_setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firstboot/modules/qubes_setup.py b/firstboot/modules/qubes_setup.py index 233905a..a727801 100644 --- a/firstboot/modules/qubes_setup.py +++ b/firstboot/modules/qubes_setup.py @@ -198,7 +198,7 @@ class moduleClass(Module): def do_configure_template(self): subprocess.check_call(['/bin/mkdir', '-p', '/mnt/template-root']) subprocess.check_call(['/bin/mount', '-oloop', - '/var/lib/qubes/vm-templates/fedora-14-x64/root.img', + '/var/lib/qubes/vm-templates/fedora-15-x64/root.img', '/mnt/template-root']) # Copy timezone setting from Dom0 to template subprocess.check_call(['cp', '/etc/localtime', '/mnt/template-root/etc'])