2
0
mirror of https://github.com/xcat2/xcat-core.git synced 2025-06-24 15:05:36 +00:00

Merge pull request #7338 from gurevichmark/pgsqlsetup

Fix syntax error in pgsqlsetup
This commit is contained in:
besawn
2023-02-16 08:05:58 -05:00
committed by GitHub

View File

@ -318,7 +318,7 @@ if (($INIT) && ($xcatrunningpgsql == 0))
# if that does not exist use resolved hostname
# double check site.master for resolution
my $sitefile = "$::backupdir/site.csv";
my $cmd = "grep \"master $sitefile";
my $cmd = q{grep \"master } . $sitefile;
my @output = xCAT::Utils->runcmd($cmd, -1);
if ($::RUNCMD_RC == 0) # entry in site table
{