From 826c8f956ba0330cacf67ff22942d5485228e8dc Mon Sep 17 00:00:00 2001 From: Adam Glasgall Date: Fri, 5 Feb 2016 20:40:08 -0500 Subject: [PATCH] okay, I don't know what the s_master in here is, but it's clearly very wrong. replace it with one that uses the correct kernel, disks, command line, and mac address (from /root on shadow-moses) --- sysvms/s_master | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/sysvms/s_master b/sysvms/s_master index 3a9543d..0ea0b2e 100644 --- a/sysvms/s_master +++ b/sysvms/s_master @@ -1,24 +1,22 @@ import os -# 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 +release = os.uname()[2] +kernel = '/boot/vmlinuz-%s' % release +ramdisk = '/boot/initrd.img-%s' % release memory = '1024' -disk = ['phy:xenvg/s_master_hda,hda,w', - 'phy:xenvg/s_master_hdb,hdb,w'] +disk = ['phy:xenvg/s_master_precise_xvda,xvda,w', + 'phy:xenvg/s_master_precise_xvdb,xvdb,w'] name = 's_master' -vif = [ 'ip=18.181.0.62,mac=00:16:3E:5F:C1:D4' ] +vif = [ 'ip=18.181.0.62,mac=00:16:3E:5F:C1:8A' ] on_poweroff = 'destroy' on_reboot = 'restart' on_crash = 'restart' -root = '/dev/hda1 ro' -extra = '2 console=xvc0' +root = '/dev/xvda1 ro' +extra = '2 console=hvc0' -- 1.7.9.5