From 01f0e79842c075834e7041519c349754a693402a Mon Sep 17 00:00:00 2001 From: lissav Date: Thu, 15 Dec 2011 19:02:44 +0000 Subject: [PATCH] fix defect 3460126 changes permission on /install/postscripts to 0700 git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@11255 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT/postscripts/servicenode | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/xCAT/postscripts/servicenode b/xCAT/postscripts/servicenode index fc1ef3260..61bc765ac 100755 --- a/xCAT/postscripts/servicenode +++ b/xCAT/postscripts/servicenode @@ -48,7 +48,7 @@ if ($^O =~ /^aix/i) { use lib "$::XCATROOT/lib/perl"; use strict; - +use xCAT::Utils; # MAIN use IO::Socket; @@ -89,10 +89,13 @@ if ($ENV{UPDATESECURITY} && $ENV{UPDATESECURITY} eq "1") { exit 0; } - # copy the postscripts to /install/postscripts - if (&runcmd("mkdir -p $installdir/postscripts; cp -p -R /xcatpost/* $installdir/postscripts > /dev/null 2>&1") != 0 ) { + # copy the postscripts to /install/postscripts, if not mounted + my $mounted = xCAT::Utils->isMounted($installdir); + if ($mounted == 0) { # not mounted + if (&runcmd("mkdir -p $installdir/postscripts; cp -p -R /xcatpost/* $installdir/postscripts > /dev/null 2>&1") != 0 ) { $msg = "$::sdate servicenode: Could not copy postscripts to $installdir/postscripts.\n"; `logger -t xcat $msg`; + } } # copy the certificates