From c9f96c82b2c268f3f168c1de40fa212cb7d7c774 Mon Sep 17 00:00:00 2001 From: lissav Date: Wed, 8 Jun 2011 12:02:04 +0000 Subject: [PATCH] add creation of database directory, if it does not exist on the service node git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@9764 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT/postscripts/db2install | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/xCAT/postscripts/db2install b/xCAT/postscripts/db2install index 91aef8a7f..2721ec3aa 100755 --- a/xCAT/postscripts/db2install +++ b/xCAT/postscripts/db2install @@ -18,6 +18,7 @@ More information can be obtained from the xCAT http://xcat.svn.sourceforge.net/viewvc/xcat/xcat-core/trunk/xCAT-client/share/doc/xCAT2SetupDB2.pdf. Needs export MASTER=site.master export DB2INSTALLLOC=site.db2installlloc + export DATABASELOC=site.databaseloc export XCATDPORT=site.xcatdport export NODE= @@ -533,6 +534,9 @@ sub rundb2sqlsetup chomp $xcatcfg; my ($database, $instance, $password) = split('\|', $xcatcfg); if ($::databaseloc) { + if (!(-e $::databaseloc)) { # if it does not exist, create it + &runcmd("mkdir -p $::databaseloc"); + } $cmd = "DATABASELOC=$::databaseloc XCATDB2SERVER=$::MN XCATDB2PW=$password $::XCATROOT/bin/db2sqlsetup -i -C"; } else {