You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by bh...@apache.org on 2015/03/30 12:23:22 UTC

git commit: updated refs/heads/master to 2de12b5

Repository: cloudstack
Updated Branches:
  refs/heads/master 6f907fb2c -> 2de12b50f


systemvmtemplate: zero out /var/log partition

Signed-off-by: Rohit Yadav <ro...@shapeblue.com>


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/2de12b50
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/2de12b50
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/2de12b50

Branch: refs/heads/master
Commit: 2de12b50f8ea29f9239bc05d51c14d213f67213b
Parents: 6f907fb
Author: Rohit Yadav <ro...@shapeblue.com>
Authored: Mon Mar 30 15:52:51 2015 +0530
Committer: Rohit Yadav <ro...@shapeblue.com>
Committed: Mon Mar 30 15:52:51 2015 +0530

----------------------------------------------------------------------
 tools/appliance/definitions/systemvmtemplate/zerodisk.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/2de12b50/tools/appliance/definitions/systemvmtemplate/zerodisk.sh
----------------------------------------------------------------------
diff --git a/tools/appliance/definitions/systemvmtemplate/zerodisk.sh b/tools/appliance/definitions/systemvmtemplate/zerodisk.sh
index 581e868..d0cc131 100644
--- a/tools/appliance/definitions/systemvmtemplate/zerodisk.sh
+++ b/tools/appliance/definitions/systemvmtemplate/zerodisk.sh
@@ -32,7 +32,7 @@ function cleanup_veewee() {
 function zero_disk() {
   cleanup_veewee
 
-  for path in / /boot /usr /var /opt /tmp /home
+  for path in / /boot /usr /var /var/log /opt /tmp /home
   do
     dd if=/dev/zero of=${path}/zero bs=1M || true
     sync