mirror of
https://github.com/xcat2/xcat-core.git
synced 2025-05-30 01:26:38 +00:00
18 lines
232 B
Perl
18 lines
232 B
Perl
#!/usr/bin/env perl
|
|
# IBM(c) 2007 EPL license http://www.eclipse.org/legal/epl-v10.html
|
|
|
|
package xCAT::DSHRemoteShell;
|
|
use strict;
|
|
|
|
sub remote_shell_command {
|
|
|
|
return undef;
|
|
}
|
|
|
|
sub remote_copy_command {
|
|
|
|
return undef;
|
|
}
|
|
|
|
1;
|