Here it is, if you download the development enviroment you can start to test your scripts. You need to wait for INM 3.0.5 to deploy them.
CODE
----------------------------------------------------------------------------------------------------------
-- Name: SSHTest.lua
-- Author: Intellipool AB
-- Description: Simple example of the SSH 2.0 client
----------------------------------------------------------------------------------------------------------
SSHClient = TLuaSSH2Client:new();
SSHClient:Open(22,"testuser","testpassword");
if SSHClient:ExecuteCommand("ls -l") == true then
print(SSHClient:GetStdOut());
SetExitStatus("Exec ok",true);
else
print(SSHClient:GetStdErr());
print(SSHClient:GetErrorDescription());
SetExitStatus("Exec failed",false);
end