removed some unnecessary code

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@5790 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
daniceexi 2010-04-16 09:01:55 +00:00
parent c980175be7
commit c2eca76b66
2 changed files with 1 additions and 5 deletions

View File

@ -48,9 +48,7 @@ $rc = &runcmd("chown root $home");
if ($rc != 0)
{
my $msg = "It fails to chown root $home";
if (defined($logenable)) {
`logger -t xcat $msg`;
}
`logger -t xcat $msg`;
exit 1;
}
$rc = &runcmd("chgrp system $home");

View File

@ -14,8 +14,6 @@
# if AIX - make sure we include perl 5.8.2 in INC path.
# Needed to find perl dependencies shipped in deps tarball.
my $osname = $^0;
`logger -t xcat $osname`;
if ($^O =~ /^aix/i) {
use lib "/usr/opt/perl5/lib/5.8.2/aix-thread-multi";
use lib "/usr/opt/perl5/lib/5.8.2";