Comment 10 for bug 525675

Revision history for this message
Thierry Carrez (ttx) wrote :

I think I nailed it:
in clc/modules/cluster-manager/src/main/java/edu/ucsb/eucalyptus/cloud/cluster/VmInstance.java

    m.put( "block-device-mapping/", "emi\nephemeral0\nroot\nswap" );
    m.put( "block-device-mapping/emi", "sda1" );
    m.put( "block-device-mapping/ami", "sda1" );
    m.put( "block-device-mapping/ephemeral", "sda2" );

That last line should probably read
    m.put( "block-device-mapping/ephemeral0", "sda2" );

Regression introduced in r906:
- m.put( "block-device-mapping/", "emi\nephemeral\nroot\nswap" );
+ m.put( "block-device-mapping/", "emi\nephemeral0\nroot\nswap" );
without changing the ephemeral reference below.