|
System | : | Linux MiraNet 3.0.0-14-generic-pae #23-Ubuntu SMP Mon Nov 21 22:07:10 UTC 2011 i686 |
Software | : | Apache. PHP/5.3.6-13ubuntu3.10 |
ID | : | uid=65534(nobody) gid=65534(nogroup) groups=65534(nogroup)
|
|
Safe Mode | : | OFF |
Open_Basedir | : | OFF |
Freespace | : | 21.68 GB of 70.42 GB (30.79%) |
|
MySQL: ON MSSQL: OFF Oracle: OFF PostgreSQL: OFF Curl: OFF Sockets: ON Fetch: OFF Wget: ON Perl: ON |
Disabled Functions: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
|
[ System Info ]
[ Processes ]
[ SQL Manager ]
[ Eval ]
[ Encoder ]
[ Mailer ]
[ Back Connection ]
[ Backdoor Server ]
[ Kernel Exploit Search ]
[ MD5 Decrypter ]
[ Reverse IP ]
[ Kill Shell ]
[ FTP Brute-Force ]
|
|
/
usr/
lib/
python2.7/
dist-packages/
landscape/
manager/
- drwxr-xr-x
|
Viewing file: plugin.py (1.59 KB) -rw-r--r--Select action/file-type:  ( +) |  ( +) |  ( +) | Code ( +) | Session ( +) |  ( +) | SDB ( +) |  ( +) |  ( +) |  ( +) |  ( +) |  ( +) |
import sys
from logging import exception
from landscape.log import format_object from landscape.broker.client import BrokerClientPlugin
# Protocol messages! Same constants are defined in the server. FAILED = 5 SUCCEEDED = 6
class ManagerPlugin(BrokerClientPlugin):
@property def manager(self): """An alias for the C{client} attribute}.""" return self.client
def call_with_operation_result(self, message, callable, *args, **kwargs): """Send an operation-result message after calling C{callable}.
If the function returns normally, an operation-result indicating success will be sent. If the function raises an exception, an operation-result indicating failure will be sent.
@param message: The original message. @param callable: The function to call to handle the message. C{args} and C{kwargs} are passed to it. """ try: text = callable(*args, **kwargs) except: status = FAILED cls, obj = sys.exc_info()[:2] text = "%s: %s" % (cls.__name__, obj) exception("Error occured running message handler %s " "with args %r %r.", format_object(callable), args, kwargs) else: status = SUCCEEDED operation_result = {"type": "operation-result", "status": status, "operation-id": message["operation-id"]} if text: operation_result["result-text"] = text return self.manager.broker.send_message(operation_result, urgent=True)
|