This commit is contained in:
Viktor Szakats 2026-06-13 00:22:31 +02:00
parent 7aa55663c3
commit 1ff63dde7d
No known key found for this signature in database
10 changed files with 38 additions and 38 deletions

View file

@ -223,10 +223,10 @@ sub runclient {
#
sub runclientoutput {
my ($cmd) = @_;
return `$cmd 2>$dev_null`;
return qx($cmd 2>$dev_null);
# This is one way to test curl on a remote machine
# my @out = `ssh $CLIENTIP cd \'$pwd\' \\; \'$cmd\'`;
# my @out = qx(ssh $CLIENTIP cd \'$pwd\' \\; \'$cmd\');
# sleep 2; # time to allow the NFS server to be updated
# return @out;
}