Private
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 :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : /usr/share/webmin/bacula-backup/edit_storage.cgi
#!/usr/bin/perl
# Show the details of one file storage daemon

require './bacula-backup-lib.pl';
&ReadParse();
$conf = &get_director_config();
@storages = &find("Storage", $conf);
$sconf = &get_storage_config();
if ($sconf) {
	@devices = map { $n=&find_value("Name", $_->{'members'}) }
			&find("Device", $sconf);
	}

if ($in{'new'}) {
	&ui_print_header(undef, $text{'storage_title1'}, "");
	$mems = [ { 'name' => 'SDPort',
		    'value' => 9103 },
		  { 'name' => 'Address',
		    'value' => &get_system_hostname() },
		  { 'name' => 'Media Type',
		    'value' => 'File' },
		  { 'name' => 'Maximum Concurrent Jobs',
		    'value' => '20' },
		  { 'name' => 'Device',
		    'value' => $devices[0] },
		];
	if (@storages) {
		push(@$mems,
			{ 'name' => 'Password',
			  'value' => &find_value("Password",
					$storages[0]->{'members'})
			});
		}
	$storage = { 'members' => $mems };
	}
else {
	&ui_print_header(undef, $text{'storage_title2'}, "");
	$storage = &find_by("Name", $in{'name'}, \@storages);
	$storage || &error($text{'storage_egone'});
	$mems = $storage->{'members'};
	}

# Show details
print &ui_form_start("save_storage.cgi", "post");
print &ui_hidden("new", $in{'new'}),"\n";
print &ui_hidden("old", $in{'name'}),"\n";
print &ui_table_start($text{'storage_header'}, "width=100%", 4);

# Storage name
print &ui_table_row($text{'storage_name'},
	&ui_textbox("name", $name=&find_value("Name", $mems), 40), 3);

# Password for remote
print &ui_table_row($text{'storage_pass'},
	&ui_textbox("pass", $pass=&find_value("Password", $mems), 60), 3);

# Connection details
print &ui_table_row($text{'storage_address'},
	&ui_textbox("address", $address=&find_value("Address", $mems), 20));
print &ui_table_row($text{'storage_port'},
	&ui_textbox("port", $port=&find_value("SDPort", $mems), 6));

# Device name
if (@devices) {
	$device=&find_value("Device", $mems);
	$found = &indexof($device, @devices) >= 0;
	print &ui_table_row($text{'storage_device'},
		&ui_select("device", $found ? $device : "",
			   [ (map { [ $_ ] } @devices),
			     [ "", $text{'storage_other'} ] ])."\n".
		&ui_textbox("other", $found ? "" : $device, 10));
	}
else {
	print &ui_table_row($text{'storage_device'},
		&ui_textbox("device", $device=&find_value("Device",$mems), 20));
	}

# Media type
print &ui_table_row($text{'storage_media'},
	&ui_textbox("media", $media=&find_value("Media Type", $mems), 20));

# Maximum Concurrent Jobs
print &ui_table_row($text{'storage_maxjobs'},
	&ui_textbox("maxjobs", $maxjobs=&find_value("Maximum Concurrent Jobs", $mems), 5));

# SSL options
&show_tls_directives($storage);

# All done
print &ui_table_end();
if ($in{'new'}) {
	print &ui_form_end([ [ "create", $text{'create'} ] ]);
	}
else {
	print &ui_form_end([ [ "save", $text{'save'} ],
			     [ "status", $text{'storage_status'} ],
			     [ "delete", $text{'delete'} ] ]);
	}
&ui_print_footer("list_storages.cgi", $text{'storages_return'});

Private