17 lines
214 B
Perl
17 lines
214 B
Perl
|
#!/usr/bin/env perl
|
||
|
# IBM(c) 2007 EPL license http://www.eclipse.org/legal/epl-v10.html
|
||
|
|
||
|
package xCAT::DSHRemoteShell;
|
||
|
|
||
|
sub remote_shell_command {
|
||
|
|
||
|
return undef;
|
||
|
}
|
||
|
|
||
|
sub remote_copy_command {
|
||
|
|
||
|
return undef;
|
||
|
}
|
||
|
|
||
|
1;
|