Skip to main content
OnCommand Workflow Automation 5.1
简体中文版经机器翻译而成,仅供参考。如与英语版出现任何冲突,应以英语版为准。

为远程系统类型创建验证脚本的准则

贡献者

您必须了解创建验证脚本的准则,这些脚本用于测试您在 OnCommand Workflow Automation ( WFA )中定义的远程系统类型。

  • 您创建的 Perl 脚本必须与验证脚本窗口中提供的示例脚本类似。

  • 验证脚本的输出必须与示例脚本的输出类似。

验证脚本示例

# Check connectivity.
# Return 1 on success.
# Return 0 on failure and set $message
sub checkCredentials {
my ($host, $user, $passwd, $protocol, $port, $timeout) = @_;
#
# Please add the code to check connectivity to $host using $protocol here.
#
return 1;
}