Skip to content

Commit

Permalink
Merge pull request #7338 from gurevichmark/pgsqlsetup
Browse files Browse the repository at this point in the history
Fix syntax error in pgsqlsetup
  • Loading branch information
besawn committed Feb 16, 2023
2 parents 8dd9fb1 + 1add9d0 commit 83b2c1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xCAT-client/bin/pgsqlsetup
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down

0 comments on commit 83b2c1a

Please sign in to comment.