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

📄 conf_files.cgi

📁 BIND 9 dynamic DNS webmin module. This module supports both static and dynamic zones, and IPv4 and I
💻 CGI
字号:
#! /usr/bin/perl##    B9DDNS - BIND 9 dynamic DNS webmin module.#    Copyright (C) 2003 John Horne. <john.horne@plymouth.ac.uk>##    This program is free software; you can redistribute it and/or modify#    it under the terms of the GNU General Public License as published by#    the Free Software Foundation; either version 2 of the License, or#    (at your option) any later version.##    This program is distributed in the hope that it will be useful,#    but WITHOUT ANY WARRANTY; without even the implied warranty of#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the#    GNU General Public License for more details.##    You should have received a copy of the GNU General Public License#    along with this program; if not, write to the Free Software#    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.### Display global file options.#use strict;no strict 'vars';require './b9ddns-lib.pl';my $conf = my $options = my $members = '';%access = &get_module_acl();unless ($access{'defaults'}) {	&terror('files_ecannot');}&ReadParse();$conf = &get_config();$options = &find('options', $conf);$members = (defined($options)) ? $options->{'members'} : [ ];&header($text{'files_title'}, '');print '<hr>';print '<form action=save_files.cgi>';print '<table border width=100%>';print "<tr $tb><td><b>", $text{'files_header'}, '</b></td></tr>';print "<tr $cb><td><table width=100%>";print '<tr>';print &opt_input($text{'files_directory'}, 'directory', $members,		 $text{'default'}, 40, &file_chooser_button('directory', 1));print "</tr>\n";print '<tr>';print &opt_input($text{'files_stats'}, 'statistics-file', $members,		 $text{'default'}, 40, &file_chooser_button('statistics_file'));print "</tr>\n";print '<tr>';print &opt_input($text{'files_dump'}, 'dump-file', $members,		 $text{'default'}, 40, &file_chooser_button('dump_file'));print "</tr>\n";print '<tr>';print &opt_input($text{'files_pid'}, 'pid-file', $members,		 $text{'default'}, 40, &file_chooser_button('pid_file'));print "</tr>\n";print '</table></td></tr></table>';print '<input type=submit value="', $text{'save'}, "\"></form>\n";print '<hr>';&footer('', $text{'index_return'});exit;

⌨️ 快捷键说明

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