From cf915efd40217c3087351bca2fb2e3ebe005e2fb Mon Sep 17 00:00:00 2001 From: John Dewey Date: Wed, 12 Dec 2012 23:28:05 -0800 Subject: [PATCH] Missed a ';' --- recipes/volume.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/volume.rb b/recipes/volume.rb index 3903ac9..72517e9 100644 --- a/recipes/volume.rb +++ b/recipes/volume.rb @@ -62,7 +62,7 @@ if node["developer_mode"] user = node["cinder"]["group"] group = node["cinder"]["user"] command <<-EOF - truncate -s #{image_size} #{image_file} + truncate -s #{image_size} #{image_file}; chown #{user}:#{group} #{image_file} EOF