From: Adam Glasgall Date: Mon, 22 Jul 2013 02:21:56 +0000 (-0400) Subject: do the temporary hack for the other two sysvms X-Git-Tag: 1.1.48_migration7^0 X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/xvm-prodconfig.git/commitdiff_plain/462d32a4420e4d29460ee6dd67a5b983e663d786 do the temporary hack for the other two sysvms --- diff --git a/debian/changelog b/debian/changelog index de552c4..646b7a1 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +xvm-prodconfig (1.1.48~migration7) precise; urgency=low + + * Do the temporary hack for the other two sysvms. + + -- Adam Glasgall Sun, 21 Jul 2013 22:21:28 -0400 + xvm-prodconfig (1.1.48~migration6) precise; urgency=low * temporary hack so we can move sysvms off old hardware diff --git a/sysvms/s_master b/sysvms/s_master index 2fba5ca..92c747f 100644 --- a/sysvms/s_master +++ b/sysvms/s_master @@ -1,7 +1,9 @@ import os -release = os.uname()[2] +# temporary hack so we can get the sysvms off the old hardware +#release = os.uname()[2] +release = "2.6.24-32-xen" kernel = '/boot/vmlinuz-%s' % release ramdisk = '/boot/initrd.img-%s' % release memory = '1024' diff --git a/sysvms/s_remote b/sysvms/s_remote index 7744102..bbca0b6 100644 --- a/sysvms/s_remote +++ b/sysvms/s_remote @@ -1,9 +1,11 @@ import os -release = os.uname()[2] -kernel = '/boot/vmlinuz-%s' % release -ramdisk = '/boot/initrd.img-%s' % release +# temporary hack so we can get the sysvms off the old hardware +#release = os.uname()[2] +release = "2.6.24-32-xen" +kernel = '/boot/hardy/vmlinuz-%s' % release +ramdisk = '/boot/hardy/initrd.img-%s' % release memory = '512' disk = ['phy:xenvg/s_remote_hda,hda,w']