Server IP : 195.201.23.43 / Your IP : 18.220.50.218 Web Server : Apache System : Linux webserver2.vercom.be 5.4.0-192-generic #212-Ubuntu SMP Fri Jul 5 09:47:39 UTC 2024 x86_64 User : kdecoratie ( 1041) PHP Version : 7.1.33-63+ubuntu20.04.1+deb.sury.org+1 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/share/webmin/virtual-server/ |
Upload File : |
#!/usr/bin/perl =head1 install-script.pl Install one third-party script This program performs the actual upgrade or install of a script into a virtual server. The required parameters are C<--domain> (followed by the domain name), C<--type> (followed by the script's short name, like drupal or squirrelmail), and C<--version> (followed by the version number or the word I<latest>). Don't use the script's longer description with the C<--type> parameter - only the short name (as shown by C<list-available-scripts --multiline>) will work. By default only versions known to Virtualmin can be installed, but you can override this check with the C<--unsupported> flag. Note that this may cause the script to fail to download or install, due to inconsistent download URLs or install methods implemented by the script creator. All scripts will also need the C<--path> parameter, which must be followed by a URL path such as /drupal. This determines the directory where the script is installed. The directory can be overridden by the C<--force-dir> option though, which must be followed by a full path. However, this is not recommended, and should only be used when you have a web server alias setup to map the path to the forced directory. Those that use a database require the C<--db> parameter, which must be followed by the database type and name, such as C<--db mysql foo>. If this is missing and the script requires it, the C<install-script> command will fail with an error message. By default the database must already exist under the virtual server, but if the C<--newdb> parameter is given it will be created as part of the script installation process. By default the exact database name you enter will be used, but when creating a new database for the script you can use the C<--prefix-db> flag to request that the DB name be prefixed in the same way that it would be when installing a script from the Virtualmin UI. If upgrading an existing script in this virtual server, you must supply the C<--upgrade> parameter, followed by the install ID. This can be found from the C<list-scripts> command, documented below. If the script makes use of the Ruby on Rails framework and your system supports multiple proxy balancer backends (as in Apache 2), the C<--mongrels> flag can be given, followed by the number of C<mongrel_rails> processes to configure and start to serve the script. Most application that Virtualmin can install have an initial username and password for administration. By default these are taken from the domain's Virtualmin login and password, but they can be overridden with the C<--user> and C<--pass> flags. When the command is run it will display the progress of the installation process as the needed files are downloaded, validated and installed. =cut package virtual_server; if (!$module_name) { $main::no_acl_check++; $ENV{'WEBMIN_CONFIG'} ||= "/etc/webmin"; $ENV{'WEBMIN_VAR'} ||= "/var/webmin"; if ($0 =~ /^(.*)\/[^\/]+$/) { chdir($pwd = $1); } else { chop($pwd = `pwd`); } $0 = "$pwd/install-script.pl"; require './virtual-server-lib.pl'; $< == 0 || die "install-script.pl must be run as root"; } @OLDARGV = @ARGV; &foreign_require("mailboxes"); &set_all_text_print(); # Parse command-line args while(@ARGV > 0) { local $a = shift(@ARGV); if ($a eq "--domain") { $domain = shift(@ARGV); } elsif ($a eq "--type") { $sname = shift(@ARGV); } elsif ($a eq "--version") { $ver = shift(@ARGV); } elsif ($a eq "--atleast-version") { $ver = shift(@ARGV); $atleast = 1; } elsif ($a eq "--unsupported") { $unsupported = 1; } elsif ($a eq "--path") { $opts->{'path'} = shift(@ARGV); $opts->{'path'} =~ /^\/\S*$/ ||&usage("Path must start with /"); } elsif ($a eq "--force-dir") { $forcedir = shift(@ARGV); $forcedir =~ /^\/\S*$/ ||&usage("Forced directory must start with /"); } elsif ($a eq "--db") { $dbtype = shift(@ARGV); if ($dbtype =~ /^(\S+)\s+(\S+)$/) { $dbtype = $1; $dbname = $2; } else { $dbname = shift(@ARGV); } &indexof($dbtype, &all_database_types()) >= 0 || &usage("$dbtype is not a valid database type. Allowed types are : ".join(" ", &all_database_types())); $dbname =~ /^\S+$/ || &usage("Missing or invalid database name"); $opts->{'db'} = $dbtype."_".$dbname; } elsif ($a eq "--newdb") { $opts->{'newdb'} = 1; } elsif ($a eq "--prefix-db") { $dbprefix = 1; } elsif ($a eq "--opt") { $oname = shift(@ARGV); if ($oname =~ /^(\S+)\s+(\S+)$/) { $oname = $1; $ovalue = $2; } else { $ovalue = shift(@ARGV); } $opts->{$oname} = $ovalue; } elsif ($a eq "--upgrade") { if (@ARGV && $ARGV[0] !~ /^\-/) { $id = shift(@ARGV); } else { $id = ""; } } elsif ($a eq "--mongrels") { $opts->{'mongrels'} = shift(@ARGV); } elsif ($a eq "--user") { $domuser = shift(@ARGV); $domuser =~ /^[a-z0-9\.\-\_]+$/i || &usage("Invalid default script username"); } elsif ($a eq "--pass") { $dompass = shift(@ARGV); } elsif ($a eq "--log-only") { $logonly = 1; } elsif ($a eq "--multiline") { $multiline = 1; } elsif ($a eq "--help") { &usage(); } else { &usage("Unknown parameter $a"); } } # Validate args $domain || &usage("No domain specified"); $sname || &usage("No script name specified"); $d = &get_domain_by("dom", $domain); $d || usage("Virtual server $domain does not exist"); @scripts = &list_domain_scripts($d); $script = &get_script($sname); $script || &usage("Script type $sname is not known"); @vers = defined($id) ? @{$script->{'versions'}} : @{$script->{'install_versions'}}; $ver || &usage("Missing version number. Available versions are : ". join(" ", @vers)); if ($opts->{'mongrels'} > 1 && &has_proxy_balancer($d) != 2) { &usage("This virtual server does not support more than one Mongrel"); } if ($ver eq "latest") { # Preferred or first (highest) version my $pfunc = $script->{'preferred_version_func'}; $ver = $vers[0]; if (defined(&$pfunc)) { $ver = &$pfunc($d); } } elsif ($atleast) { # Lowest version that is at least the one asked for foreach my $v (@vers) { if (&compare_versions($v, $ver) >= 0) { $atleastver = $v; } } $atleastver || &usage("No version $ver or higher was found"); $ver = $atleastver; } else { &indexof($ver, @vers) >= 0 || $unsupported || &usage("Version $ver is not valid for script. ". "Available versions are : ". join(" ", @{$script->{'versions'}})); } if (defined($id)) { # Find script being upgraded if ($id) { ($sinfo) = grep { $_->{'id'} eq $id } @scripts; $sinfo || &usage("No script install to upgrade with ". "ID $id was found"); $sinfo->{'name'} eq $sname || &usage("Script with ID $id is of type ". "$sinfo->{'name'}, but type to install is $sname"); } else { # Assume same type @sinfos = grep { $_->{'name'} eq $sname } @scripts; @sinfos || &usage("No installed script of type $sname ". "was found"); @sinfos == 1 || &usage("More than one installed script of ". "type $sname was found"); $sinfo = $sinfos[0]; } $sinfo->{'deleted'} && &usage("Manually deleted scripts cannot be upgraded"); $opts = $sinfo->{'opts'}; $domuser = $sinfo->{'user'} || $d->{'user'}; $dompass = $sinfo->{'pass'} || $d->{'pass'}; # Check if upgrade is allowed $canupfunc = $script->{'can_upgrade_func'}; if (defined(&$canupfunc) && !&$canupfunc($sinfo, $ver)) { &usage("Upgrading from version $sinfo->{'version'} to $ver ". "is not supported"); } } else { $domuser ||= $d->{'user'}; $dompass = $dompass || $d->{'pass'} || &random_password(8); } # Check domain features &domain_has_website($d) && $d->{'dir'} || &usage("Scripts can only be installed into virtual servers with a ". "website and home directory"); if (!defined($id)) { # Check for enough quota ($ok, $need, $usage, $quota) = &check_script_quota($d, $script, $ver); $ok || &usage("Script requires ".&nice_size($need). " of free disk quota, but only ".&nice_size($quota-$usage). " is available"); } # Fix DB name with prefix if requested $tmpl = &get_template($d->{'template'}); if ($dbprefix && $dbname) { if ($tmpl->{'mysql_suffix'} ne "none") { # Prefix comes from template $prefix = &substitute_domain_template( $tmpl->{'mysql_suffix'}, $d); $prefix =~ s/-/_/g; $prefix =~ s/\./_/g; if ($prefix && $prefix !~ /_$/) { # Always use _ as separator $prefix .= "_"; } } else { # Prefix is domain's default DB $prefix = &database_name($d)."_"; } $dbname = &fix_database_name($prefix.$dbname, $dbtype); $opts->{'db'} = $dbtype."_".$dbname; } # Re-check the public html directory &find_html_cgi_dirs($d); &save_domain($d); # Validate options if ($opts->{'path'}) { # Convert the path into a directory if ($forcedir) { # Explicitly set by user $opts->{'dir'} = $forcedir; } else { # Work out from path $perr = &validate_script_path($opts, $script, $d); &usage($perr) if ($perr); } } if ($opts->{'db'} && $sname !~ /^php\S+admin$/i) { ($dbtype, $dbname) = split(/_/, $opts->{'db'}, 2); @dbs = &domain_databases($d); ($db) = grep { $_->{'type'} eq $dbtype && $_->{'name'} eq $dbname } @dbs; if (!$sinfo) { if (!$opts->{'newdb'}) { $db || &usage("$dbtype database $dbname does not exist"); } else { $db && &usage("$dbtype database $dbname already exists"); } } } if (defined(&{$script->{'check_func'}}) && !$sinfo && !$logonly) { $oerr = &{$script->{'check_func'}}($d, $ver, $opts, $sinfo); if ($oerr) { &usage("Options problem detected : $oerr"); } } # Check for a directory clash, unless upgrading if (!$sinfo && !$script->{'overlap'}) { ($clash) = grep { $_->{'opts'}->{'path'} eq $opts->{'path'} } @scripts; if ($clash) { $clashscript = &get_script($clash->{'name'}); $clashscript->{'overlap'} || &usage(&text('scripts_eclash', $opts->{'dir'})); } } # Install needed packages &setup_script_packages($script, $d, $ver); # Run the before command %envs = map { 'script_'.$_, $opts->{$_} } (keys %$opts); $envs{'script_name'} = $sname; $envs{'script_upgrade'} = defined($id) ? 1 : 0; $envs{'script_version'} = $ver; &set_domain_envs($d, "SCRIPT_DOMAIN", \%newdom, undef, \%envs); $merr = &making_changes(); &reset_domain_envs($d); &error(&text('save_emaking', "<tt>$merr</tt>")) if (defined($merr)); # Get locks &obtain_lock_web($d); &obtain_lock_cron($d); # Check PHP version if (&indexof("php", @{$script->{'uses'}}) >= 0) { &$first_print("Checking PHP version .."); ($phpver, $phperr) = &setup_php_version($d, $script, $ver, $opts->{'path'}); if (!$phpver) { &$second_print(".. $phperr"); exit(1); } else { &$second_print(".. using PHP version $phpver"); } $opts->{'phpver'} = $phpver; } # Check Python version if (&indexof("python", @{$script->{'uses'}}) >= 0) { &$first_print("Checking Python version .."); ($pyver, $pyerr) = &setup_python_version($d, $script, $ver, $opts->{'path'}); if ($pyerr) { &$second_print(".. $pyerr"); exit(1); } elsif ($pyver) { &$second_print(".. using Python version $pyver"); $opts->{'pyver'} = $pyver; } else { &$second_print(".. done"); } } # Check dependencies &$first_print("Checking dependencies .."); $derr = &check_script_depends($script, $d, $ver, $sinfo, $phpver); if ($derr) { &$second_print(".. failed : $derr"); exit(1); } else { &$second_print(".. done"); } # First fetch needed files &$first_print("Fetching required files .."); $ferr = &fetch_script_files($d, $ver, $opts, $sinfo, \%gotfiles, 1); if ($ferr) { &$second_print(".. failed : $ferr"); exit(1); } else { &$second_print(".. done"); } # Install needed PHP and Perl modules &setup_script_requirements($d, $script, $ver, $phpver, $opts) || exit(1); # Disable PHP timeouts if (&indexof("php", @{$script->{'uses'}}) >= 0) { $t = &disable_script_php_timeout($d); } # Apply Apache config if needed, for new PHP version or modules or settings &run_post_actions(); # Call the install function if ($logonly) { # Just pretend &$first_print(&text('scripts_faking', $script->{'desc'}, $ver)); $ok = 1; $msg = ""; $rp = $opts->{'dir'}; $rp =~ s/^$d->{'home'}\///; $desc = "Under $rp"; $url = &script_path_url($d, $opts); $suser = $domuser; $spass = $dompass; } else { # Really do it &$first_print(&text('scripts_installing', $script->{'desc'}, $ver)); ($ok, $msg, $desc, $url, $suser, $spass) = &{$script->{'install_func'}}($d, $ver, $opts, \%gotfiles, $sinfo, $domuser, $dompass); if ($msg =~ /</) { $msg = &mailboxes::html_to_text($msg); $msg =~ s/^\s+//; $msg =~ s/\s+$//; } &$indent_print(); &$first_print($msg); &$outdent_print(); } # Re-enable script PHP timeout if (&indexof("php", @{$script->{'uses'}}) >= 0) { &enable_script_php_timeout($d, $t); } if ($ok) { if ($ok < 0) { &$indent_print(); &$first_print($text{'scripts_epartialmanual'}." ".&get_script_link($d, $opts, 1)); &$outdent_print(); } &$second_print($ok < 0 ? $text{'scripts_epartial'} : $text{'setup_done'}); if (!$sinfo && $ok > 0) { # Show username and password if ($suser && $spass) { print &text('scripts_userpass', $suser, $spass),"\n\n"; } elsif ($suser) { print &text('scripts_useronly', $suser),"\n\n"; } elsif ($spass) { print &text('scripts_passonly', $spass),"\n\n"; } } # Record script install in domain if ($sinfo) { &remove_domain_script($d, $sinfo); } &add_domain_script($d, $sname, $ver, $opts, $desc, $url, $sinfo ? ( $sinfo->{'user'}, $sinfo->{'pass'} ) : ( $suser, $spass ), $ok < 0 ? $msg : undef); &run_post_actions(); &virtualmin_api_log(\@OLDARGV, $d); } else { &$second_print($text{'scripts_failed'}); &run_post_actions(); } &release_lock_web($d); &release_lock_cron($d); # Run post commands &set_domain_envs($d, "SCRIPT_DOMAIN", undef, \%envs); local $merr = &made_changes(); &$second_print(&text('setup_emade', "<tt>$merr</tt>")) if (defined($merr)); &reset_domain_envs($d); exit($ok ? 0 : 1); sub usage { print "$_[0]\n\n" if ($_[0]); print "Installs a third-party script into some virtual server.\n"; print "\n"; print "virtualmin install-script --domain domain.name\n"; print " --type name\n"; print " --version number|\"latest\" [--unsupported]\n"; print " [--path url-path]\n"; print " [--db \"type name\"]\n"; print " [--prefix-db]\n"; print " [--opt \"name value\"]\n"; print " [--upgrade id]\n"; print " [--force-dir directory]\n"; print " [--mongrels number]\n"; print " [--user username --pass password]\n"; print " [--log-only]\n"; exit(1); }Private