1
0
mirror of synced 2026-01-21 09:53:08 +00:00

2006-08-17 20:24:15 by steve

BUGFIX:  We don't need '{' or '}' around our devices any more.
This commit is contained in:
steve 2006-08-17 20:24:15 +00:00
parent d58678b734
commit 5cbd4c1714

View File

@ -19,11 +19,11 @@ root = '/dev/{$device}1 ro'
{ if ( $noswap )
{
$OUT .= "disk = [ '{$image_vbd},{$device}1,w' ]";
$OUT .= "disk = [ '$image_vbd,$device1,w' ]";
}
else
{
$OUT .= "disk = [ '{$image_vbd},{$device}1,w', '{$swap_vbd},{$device}2,w' ]";
$OUT .= "disk = [ '$image_vbd,$device1,w', '$swap_vbd,$device2,w' ]";
}
}