⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 save_acls.cgi

📁 Unix下基于Web的管理工具
💻 CGI
字号:
#!/usr/local/bin/perl# save_acls.cgi# Update all the acl directivesrequire './bind8-lib.pl';%access = &get_module_acl();$access{'defaults'} || &error($text{'acls_ecannot'});&error_setup($text{'acls_err'});&ReadParse();# XXXX new acls should go at the top!$conf = &get_config();for($i=0; defined($name = $in{"name_$i"}); $i++) {	next if (!$name);	$name =~ /^\S+$/ || &error(&text('acls_ename', $name));	@vals = split(/\s+/, $in{"values_$i"});	push(@acls, { 'name' => 'acl',		      'values' => [ $name ],		      'type' => 1,		      'members' => [ map { { 'name' => $_ } } @vals ] });	}&save_directive(&get_config_parent(), 'acl', \@acls, 0);&flush_file_lines();&redirect("");

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -