Server IP : 195.201.23.43 / Your IP : 3.148.109.137 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/backup-config/ |
Upload File : |
#!/usr/bin/perl # Do an immediate restore use strict; use warnings; no warnings 'redefine'; no warnings 'uninitialized'; require './backup-config-lib.pl'; our (%in, %text, %config, $module_config_file); &ReadParseMime(); # Validate inputs &error_setup($text{'restore_err'}); my $src = &parse_backup_destination("src", \%in); my @mods = split(/\0/, $in{'mods'}); my @others = split(/[\r\n]+/, $in{'others'}); @mods || @others || &error($text{'restore_emods'}); # Do it .. my ($mode, $user, $pass, $server, $path, $port) = &parse_backup_url($src); if ($mode == 3) { # Create temp file for uploaded file my $temp = &transname(); open(TEMP, ">$temp"); print TEMP $in{$path}; close(TEMP); $src = $temp; } &ui_print_header(undef, $text{'restore_title'}, ""); print &text($in{'test'} ? 'restore_testing' : 'restore_doing', &nice_dest($src)),"<p>\n"; my @files; my $err = &execute_restore(\@mods, $src, \@files, $in{'apply'}, $in{'test'}, \@others); &unlink_file($src) if ($mode == 3); if ($err) { print &text('restore_failed', $err),"<p>\n"; } elsif ($in{'test'}) { print $text{'restore_done2'},"<p>\n"; print &ui_table_start(undef, "width=100%", 2); print &ui_table_row(undef, "<pre>".join("\n", map { &html_escape($_) } @files)."</pre>", 2); print &ui_table_end(); } else { print &text('restore_done', scalar(@files)),"<p>\n"; } $config{'apply'} = $in{'apply'}; &lock_file($module_config_file); &save_module_config(); &unlock_file($module_config_file); &webmin_log("restore", undef, $src, { 'mods' => \@mods }); &ui_print_footer("", $text{'index_return2'});Private