On 07/Jun/2009 05:47 hahmed <dim...@gm...> wrote ..
> How to get a hash reference of the module access list from a remote server??
> I tried :
> &remote_foreign_require($server,module,module-lib.pl);
> $remote_access=&remote_foreign_call($server,"module",get_module_acl();
> but it didn't work.
You should be able to use :
%remote_access = &remote_foreign_call($server,"module", "get_module_acl");
However, this doesn't really make a lot of sense, as you will be getting
the remote root user's access hash, which typically grants full access.
- Jamie
|