|
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.98 GB of 70.42 GB (31.21%) |
|
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: config.py (2.36 KB) -rw-r--r--Select action/file-type:  ( +) |  ( +) |  ( +) | Code ( +) | Session ( +) |  ( +) | SDB ( +) |  ( +) |  ( +) |  ( +) |  ( +) |  ( +) |
import os
from landscape.deployment import Configuration from landscape.manager.scriptexecution import ALL_USERS
ALL_PLUGINS = ["ProcessKiller", "PackageManager", "UserManager", "ShutdownManager", "Eucalyptus", "AptSources"]
class ManagerConfiguration(Configuration): """Specialized configuration for the Landscape Manager."""
def make_parser(self): """ Specialize L{Configuration.make_parser}, adding many manager-specific options. """ parser = super(ManagerConfiguration, self).make_parser()
parser.add_option("--manager-plugins", metavar="PLUGIN_LIST", help="Comma-delimited list of manager plugins to " "use. ALL means use all plugins.", default="ALL") parser.add_option("--include-manager-plugins", metavar="PLUGIN_LIST", help="Comma-delimited list of manager plugins to " "enable, in addition to the defaults.") parser.add_option("--script-users", metavar="USERS", help="Comma-delimited list of usernames that scripts" " may be run as. Default is to allow all " "users.") return parser
@property def plugin_factories(self): plugin_names = [] if self.manager_plugins == "ALL": plugin_names = ALL_PLUGINS[:] elif self.manager_plugins: plugin_names = self.manager_plugins.split(",") if self.include_manager_plugins: plugin_names += self.include_manager_plugins.split(",") return [x.strip() for x in plugin_names]
def get_allowed_script_users(self): """ Based on the C{script_users} configuration value, return the users that should be allowed to run scripts.
If the value is "ALL", then L{landscape.manager.scriptexecution.ALL_USERS} will be returned. If there is no specified value, then C{nobody} will be allowed. """ if not self.script_users: return ["nobody"] if self.script_users.strip() == "ALL": return ALL_USERS return [x.strip() for x in self.script_users.split(",")]
@property def store_filename(self): return os.path.join(self.data_path, "manager.database")
|