summaryrefslogtreecommitdiff
path: root/httemplate/docs
diff options
context:
space:
mode:
authorivan <ivan>2002-05-15 13:24:26 +0000
committerivan <ivan>2002-05-15 13:24:26 +0000
commiteb7c552dd8290d6b33a4e026c5dc21ebf01105cf (patch)
treef4e307c94039085b55bd2c416e78824cabe52911 /httemplate/docs
parentce119821d508611bce8d2c62c3faec237faa6612 (diff)
queue dependancies
Diffstat (limited to 'httemplate/docs')
-rw-r--r--httemplate/docs/install.html2
-rw-r--r--httemplate/docs/schema.diabin11176 -> 11452 bytes
-rw-r--r--httemplate/docs/schema.html6
-rw-r--r--httemplate/docs/schema.pngbin446146 -> 496268 bytes
-rw-r--r--httemplate/docs/upgrade8.html8
5 files changed, 15 insertions, 1 deletions
diff --git a/httemplate/docs/install.html b/httemplate/docs/install.html
index 5c13ac10d..26fa34dd1 100644
--- a/httemplate/docs/install.html
+++ b/httemplate/docs/install.html
@@ -186,7 +186,7 @@ $ bin/fs-setup <b>username</b>
$ su freeside
$ bin/populate-msgcat <b>username</b>
</pre>
- <li><tt>freeside-queued</tt> was installed with the Perl modules. Start it now and ensure that is run upon system startup.
+ <li><tt>freeside-queued</tt> was installed with the Perl modules. Start it now and ensure that is run upon system startup (Do this manually, or, edit the top-level Makefile, replacing INIT_FILE with the appropriate location on your system, and run <tt>make install-init</tt>.
<li>Now proceed to the initial <a href="admin.html">administration</a> of your installation.
</ul>
</body>
diff --git a/httemplate/docs/schema.dia b/httemplate/docs/schema.dia
index 148c1dfbc..c22a470e0 100644
--- a/httemplate/docs/schema.dia
+++ b/httemplate/docs/schema.dia
Binary files differ
diff --git a/httemplate/docs/schema.html b/httemplate/docs/schema.html
index 3f627448f..2b8b3a132 100644
--- a/httemplate/docs/schema.html
+++ b/httemplate/docs/schema.html
@@ -401,6 +401,12 @@
<li>jobnum - <a href="#queue">job</a>
<li>arg - argument
</ul>
+ <li><a name="queue_depend" href="man/FS/queue_depend.html">queue_depend</a> - job dependancies
+ <ul>
+ <li>dependnum - primary key
+ <li>jobnum - source jobnum
+ <li>depend_jobnum - dependancy jobnum
+ </ul>
<li><a name="radius_usergroup" href="man/FS/radius_usergroup.html">radius_usergroup</a> - Link users to RADIUS groups.
<ul>
<li>usergroupnum - primary key
diff --git a/httemplate/docs/schema.png b/httemplate/docs/schema.png
index b3f00375e..ba22f59c2 100644
--- a/httemplate/docs/schema.png
+++ b/httemplate/docs/schema.png
Binary files differ
diff --git a/httemplate/docs/upgrade8.html b/httemplate/docs/upgrade8.html
index 97758fdb2..e6184df14 100644
--- a/httemplate/docs/upgrade8.html
+++ b/httemplate/docs/upgrade8.html
@@ -120,6 +120,14 @@ CREATE TABLE queue_arg (
);
CREATE INDEX queue_arg1 ON queue_arg ( jobnum );
+CREATE TABLE queue_depend (
+ dependnum int primary key,
+ jobnum int not null,
+ depend_jobnum int not null
+);
+CREATE INDEX queue_depend1 ON queue_depend ( jobnum );
+CREATE INDEX queue_depend2 ON queue_depend ( depend_jobnum );
+
CREATE TABLE part_pop_local (
localnum int primary key,
popnum int not null,