summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--httemplate/docs/install.html2
-rw-r--r--httemplate/docs/schema.html4
-rw-r--r--httemplate/docs/upgrade8.html10
3 files changed, 11 insertions, 5 deletions
diff --git a/httemplate/docs/install.html b/httemplate/docs/install.html
index 315ad8f50..d8d02c1e7 100644
--- a/httemplate/docs/install.html
+++ b/httemplate/docs/install.html
@@ -7,7 +7,7 @@ Before installing, you need:
<ul>
<li><a href="http://www.perl.com/">Perl</a> Don't enable experimental features like threads or the PerlIO abstraction layer.
<li><a href="http://www.apache.org">Apache</a> (<a href="http://www.modssl.org/">mod_ssl</a> or <a href="http://www.apache-ssl.org">Apache-SSL</a> highly recommended)
- <li><a href="http://perl.apache.org/">mod_perl</a>
+ <li><a href="http://perl.apache.org/">mod_perl</a> (if compiling your own mod_perl, make sure you set the <a href="http://perl.apache.org/guide/install.html#EVERYTHING">EVERYTHING</a>=1 compile-time option)
<li><a href="http://www.openssh.com/">SSH</a> (<a href="http://www.openssh.com//">OpenSSH</a> is recommended. SSH Communications Security <a href="http://www.ssh.com/products/ssh/download.cfm">commercial SSH version 3</a> has been reported incompatible with Freeside.)
<li><a href="http://rsync.samba.org/">rsync</a>
<li>A <b>transactional</b> database engine supported by Perl's <a href="http://www.hermetica.com/technologia/DBI/">DBI</a>.
diff --git a/httemplate/docs/schema.html b/httemplate/docs/schema.html
index bdf3a500e..8420161bf 100644
--- a/httemplate/docs/schema.html
+++ b/httemplate/docs/schema.html
@@ -266,7 +266,7 @@
<ul>
<li>optionnum - primary key
<li>exportnum - <a href="#part_export">Export</a>
- <li>option - option name
+ <li>optionname - option name
<li>optionvalue - option value
</ul>
<li><a name="port" href="man/FS/port.html">port</a> - individual port on a <a href="#nas">nas</a>
@@ -372,6 +372,8 @@
<li>job
<li>_date
<li>status
+ <li>statustext
+ <li>svcnum
</ul>
<li><a name="queue_arg" href="man/FS/queue_arg.html">queue_arg</a> - job arguments
<ul>
diff --git a/httemplate/docs/upgrade8.html b/httemplate/docs/upgrade8.html
index 85c33d649..ac006d221 100644
--- a/httemplate/docs/upgrade8.html
+++ b/httemplate/docs/upgrade8.html
@@ -106,8 +106,12 @@ CREATE TABLE queue (
jobnum int primary key,
job text not null,
_date int not null,
- status varchar(80) not null
+ status varchar(80) not null,
+ statustext text null,
+ svcnum int null
);
+CREATE INDEX queue1 ON queue ( svcnum );
+CREATE INDEX queue2 ON queue ( status );
CREATE TABLE queue_arg (
argnum int primary key,
@@ -161,11 +165,11 @@ CREATE INDEX part_export2 ON part_export ( exporttype );
CREATE INDEX part_export_option (
optionnum int primary key,
exportnum int not null,
- option varchar(80) not null,
+ optionname varchar(80) not null,
optionvalue text NULL
);
CREATE INDEX part_export_option1 ON part_export_option ( exportnum );
-CREATE INDEX part_export_option2 ON part_export_option ( option );
+CREATE INDEX part_export_option2 ON part_export_option ( optionname );
ALTER TABLE svc_acct ADD domsvc integer NOT NULL;
ALTER TABLE svc_domain ADD catchall integer NULL;