2
0
mirror of https://github.com/xcat2/xcat-core.git synced 2025-05-29 17:23:08 +00:00

Get GitHub action script directory reference19

This commit is contained in:
Mark Gurevich 2022-06-30 16:15:32 -04:00
parent 084b0dafa1
commit bfd0c56339

View File

@ -505,7 +505,8 @@ sub run_fast_regression_test{
chomp($hostname);
print "hostname = $hostname\n";
my $conf_file = "$ENV{'PWD'}/regression.conf";
open(my $fh, '>', $conf_file) or die "Could not open test configuration file '$conf_file' $!";
print "MG about to open file $conf_file";
open(my $fh, '>', $conf_file) or die "Could not open test configuration file $!";
print "MG file opened";
#$cmd = "sudo echo '[System]' > $conf_file; sudo echo 'MN=$hostname' >> $conf_file; sudo echo '[Table_site]' >> $conf_file; sudo echo 'key=domain' >>$conf_file; sudo echo 'value=pok.stglabs.ibm.com' >> $conf_file";
print $fh "[System]\nMN=$hostname\n[Table_site]\nkey=domain\nvalue=pok.stglabs.ibm.com\n";