diff options
author | Matt Smith <mcs@darkregion.net> | 2011-04-11 06:30:08 -0500 |
---|---|---|
committer | Matt Smith <mcs@darkregion.net> | 2011-04-11 07:44:12 -0500 |
commit | 60f9f71401ccb4a3e24fb66079a29078480e00e8 (patch) | |
tree | 4ebc673da9e0a20b8d0e7b2921e1f0ef9bfe5bba /testing/poweradmin/0010-fix-installer-config.patch | |
parent | bf661e49d5d19eae50242031ef85b752fe541132 (diff) | |
download | aports-60f9f71401ccb4a3e24fb66079a29078480e00e8.tar.bz2 aports-60f9f71401ccb4a3e24fb66079a29078480e00e8.tar.xz |
testing/poweradmin: new aport
A Web-based PHP tool for administering PowerDNS
http://www.poweradmin.org/
Diffstat (limited to 'testing/poweradmin/0010-fix-installer-config.patch')
-rw-r--r-- | testing/poweradmin/0010-fix-installer-config.patch | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/testing/poweradmin/0010-fix-installer-config.patch b/testing/poweradmin/0010-fix-installer-config.patch new file mode 100644 index 0000000000..11dd435163 --- /dev/null +++ b/testing/poweradmin/0010-fix-installer-config.patch @@ -0,0 +1,31 @@ +--- ./install/index.php.orig ++++ ./install/index.php +@@ -287,11 +287,27 @@ + "\$db_port\t\t= '" . $_POST['db_port'] . "';\n" . + "\$db_type\t\t= '" . $_POST['db_type'] . "';\n" . + "\n" . +- "\$iface_lang\t\t= '" . $_POST['language'] . "';\n" . ++ "\$iface_lang\t\t= '" . $_POST['language'] . "';\n" . ++ "\$iface_style\t\t= ". "'example';\n" . ++ "\$iface_rowamount\t=". "50;\n" . ++ "\$iface_expire\t\t=". "1800;\n" . ++ "\$iface_zonelist_serial\t=". "false;\n" . ++ "\$iface_title\t\t=". "'Poweradmin';\n" . + "\n" . + "\$dns_hostmaster\t\t= '" . $_POST['dns_hostmaster'] . "';\n" . + "\$dns_ns1\t\t= '" . $_POST['dns_ns1'] . "';\n" . + "\$dns_ns2\t\t= '" . $_POST['dns_ns2'] . "';\n" . ++ "\n" . ++ "// See <http://www.php.net/manual/en/timezones.php> for help.\n" . ++ "//\$timezone\t\t=". "'UTC';\n" . ++ "\n" . ++ "/* Syslog usage - writes authentication attempts to syslog\n" . ++ " This facility could be used in combination with fail2ban to\n" . ++ " ban IPs with break-in attempts\n" . ++ "*/\n" . ++ "\$syslog_use = false;\n" . ++ "\$syslog_ident = 'poweradmin';\n" . ++ "\$syslog_facility = LOG_USER;\n" . + "\n?>\n"; + + if (is_writeable($local_config_file)) { |