Server IP : 195.201.23.43 / Your IP : 3.149.255.21 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/bacula-backup/ |
Upload File : |
#!/usr/bin/perl # Execute multiple backup jobs, one for each client require './bacula-backup-lib.pl'; &ui_print_unbuffered_header(undef, $text{'gbackup_title'}, ""); &ReadParse(); # Get the backup job def and real jobs $conf = &get_director_config(); @jobdefs = &find("JobDefs", $conf); $jobdef = &find_by("Name", "ocjob_".$in{'job'}, \@jobdefs); foreach $job (&get_bacula_jobs()) { ($j, $c) = &is_oc_object($job); if ($j eq $in{'job'} && $c) { push(@jobs, $job); } } print "<b>",&text('gbackup_run', "<tt>$in{'job'}</tt>", scalar(@jobs)),"</b>\n"; # Clear messages $h = &open_console(); &console_cmd($h, "messages"); # Run the real jobs print "<dl>\n"; foreach $job (@jobs) { ($j, $c) = &is_oc_object($job); print "<dt>",&text('gbackup_on', "<tt>$c</tt>"),"\n"; print "<dd><pre>"; # Select the job to run &sysprint($h->{'infh'}, "run\n"); &wait_for($h->{'outfh'}, 'run\\n'); $rv = &wait_for($h->{'outfh'}, 'Select Job.*:'); print $wait_for_input; if ($rv == 0 && $wait_for_input =~ /(\d+):\s+\Q$job->{'name'}\E/) { &sysprint($h->{'infh'}, "$1\n"); } else { &job_error($text{'backup_ejob'}); } # Say that it is OK $rv = &wait_for($h->{'outfh'}, 'OK to run.*:'); print $wait_for_input; if ($rv == 0) { &sysprint($h->{'infh'}, "yes\n"); } else { &job_error($text{'backup_eok'}); } print "</pre>"; } print "</dl>\n"; &close_console($h); &webmin_log("gbackup", $in{'job'}); &ui_print_footer("", $text{'index_return'}); sub job_error { print "</pre>\n"; print "<b>",@_,"</b><p>\n"; &close_console($h); &ui_print_footer("backup_form.cgi", $text{'backup_return'}); exit; }Private