Make an extra index on the log_abuse table
[gnucomo.git] / src / database / create.sql
1 --*************************************************************************
2 --  (c) Copyright 2002, De Winter Information Solutions
3 -- This is free software; you can redistribute it and/or modify it under the
4 -- terms of the GNU General Public License, see the file COPYING.
5 --*************************************************************************/
6 --
7 -- Gnucomo database creation script.
8 --
9 --
10 -- This SQL script creates the initial tables for the Gnucomo database.
11 -- Before running this script with 'psql -f', you should have your
12 -- DBA create the database and give access permissions.
13 --
14 --  $Log: create.sql,v $
15 --  Revision 1.24  2011-03-23 17:04:41  arjen
16 --  Added a new group daemon and created additional permissions to the database.
17 --
18 --  Revision 1.23  2007/11/17 09:32:24  arjen
19 --  Minor fixes to make created and upgraded databases equal.
20 --  Cleanup of database destruction script.
21 --
22 --  Revision 1.22  2007/11/03 10:30:10  arjen
23 --  Added the class definition for a filesystem parameter.
24 --  New issue type: 'property out of range'.
25 --
26 --  Revision 1.21  2007/10/23 11:25:42  arjen
27 --  Fixed the Failure and warning issues.
28 --
29 --  Revision 1.20  2007/01/11 13:47:35  arjen
30 --  Log_adv and derived tables removed.
31 --  Create notifications from log entries with pattern matching.
32 --
33 --  Revision 1.19  2005/06/04 07:09:47  arjen
34 --  - Fixed field declaration for PostgreSQL 7.4
35 --  - New tables: log_abuse, object_abuse and service_pattern
36 --  - Added general service patterns in the service 'ANY'
37 --  - Added new issue types.
38 --
39 --  Revision 1.18  2003/12/03 08:06:57  arjen
40 --  Changed the type of log_adv_daemon_email.delay and log_adv_daemon_email.xdelay
41 --  from time to interval. These delays can be more than 24 hours.
42 --
43 --  Revision 1.17  2003/09/02 12:49:47  arjen
44 --  BUGFIX: Secondary indices on log_notification were unique.
45 --  Additional information in the 'usr' table: 'display_name' and 'email'.
46 --  Added new issues and services.
47 --
48 --  Revision 1.16  2003/08/16 14:29:02  arjen
49 --  Fixed a few typos.
50 --
51 --  Revision 1.15  2003/08/05 07:43:24  arjen
52 --  Added index to the history table.
53 --
54 --  Revision 1.14  2003/07/09 07:14:59  arjen
55 --  New database tables: notification_check, notification_check_buffer,
56 --  notification_check_line and object_statistics.
57 --
58 --  Revision 1.13  2003/03/29 08:27:05  arjen
59 --  New columns in the table 'log_adv_daemon_email': size, pri, relay,
60 --  status_details and dsn.
61 --  Added several indices for the table 'log_adv_daemon_email'.
62 --
63 --  Revision 1.12  2003/02/21 08:38:38  arjen
64 --  Added new table to the database: log_adv_daemon_email.
65 --
66 --  Revision 1.11  2003/02/16 08:24:38  arjen
67 --  Added a new entry to the action table: Notification was displayed in the listing
68 --
69 --  Revision 1.10  2003/02/14 06:32:27  arjen
70 --  Setup the groups and database permissions. The three groups
71 --  are: view, ops and admin.
72 --  Added a new entry to the action table.
73 --
74 --  Revision 1.9  2003/02/13 08:46:54  arjen
75 --  Added log, notification and parameter counters to the 'object' table.
76 --  Counting these things at the time a user interface needs them is
77 --  too slow. Other programs, like gcm_daemon en gcm_input should prepare
78 --  these counters for quick retrieval.
79 --
80 --  Revision 1.8  2003/02/08 07:36:41  arjen
81 --  Added new table to the database : log_adv_daemon
82 --
83 --  Revision 1.7  2003/02/05 09:29:08  arjen
84 --  Bug fix: action.statuscode was in upper case.
85 --
86 --  Revision 1.6  2003/01/20 07:29:48  arjen
87 --  Added new tables to the database: parameter_class and parameter_notification
88 --
89 --  Revision 1.5  2003/01/18 08:46:48  arjen
90 --  Added new records to the 'type_of_issue' table.
91 --  Changed semantics of actionid 9 in the 'action' table.
92 --
93 --
94
95 CREATE SEQUENCE "action_actionid_seq";
96
97 CREATE TABLE "action"
98 (
99         "actionid" bigint DEFAULT nextval('"action_actionid_seq"'::text) NOT NULL,
100         "actionname" text,
101         "statuscode" character varying(3),
102         "description" text
103 );
104
105
106 COPY "action" FROM stdin;
107 1       Entry in the system     new     This indicates that a notification has been entered into the system.
108 2       Display to user opn     The notification has been displayed to the user. It doesn't mean that the user actually read the notification, but he/she should be aware. For that reason we consider the notification to be OPEN
109 3       Remarks added   pen     Remarks have been added to the notification.
110 4       Priority changed manually       pen     The priority of the notification has been changed by the user.
111 5       Priority changed automatically  pen     The priority of the notification has been changed by the system. This can be the result of an action by the user or an automatical escalation.
112 6       Action taken    pen     An action has been taken.
113 7       Assignment to user      pen     The notification has been assigned to an user.
114 8       More information or research needed.    inv     The notification is relevant and will be handled, however more information or research will be needed. For that reason the status has been altered to UNDER INVESTIGATION.
115 9       Investigation completed pen     Investigation has been done. Information is available to fix the problem.
116 10      Job output no longer valid      cls     By making a newer job output a valid reference, this data has been obsoleted. Since it was a reference once the output isn't interesting anymore and thus the notification can be closed.
117 11      Action taken - please verify    cls     An action has been taken and things should have been resolved. Before the notification can be closed a verification has to be done. The new status is now VERIFY.
118 12      Action not verified     pen     A check has been done and the results were not good. New verification is needed. The status has been changed back to PEN.
119 13      Action verified cls     A check has been done and the results were approved. The notification has been closed.
120 15      SMS sent        opn     An SMS has been sent.
121 14      E-mail sent     opn     An e-mail has been sent.
122 16      Fax sent        opn     An fax has been sent.
123 17      Log entries shown       \N      The log entries relevant to the notification have been shown.
124 18      Notification closed     cls     The notification has been closed.
125 19      Notification reopend    opn     The notification has been reopend.
126 20      Redisplayed to user     \N      The notification has been presented to a user. This is not the first time
127 21      Displayed in list       \N      The notification has been presented in a list with other notifications.
128 \.
129
130 CREATE UNIQUE INDEX action_actionid_key ON "action" USING btree (actionid);
131
132 CREATE UNIQUE INDEX act_pk ON "action" USING btree (actionid);
133
134 CREATE UNIQUE INDEX act_actionname ON "action" USING btree (actionname);
135
136 CREATE INDEX act_statuscode ON "action" USING btree (statuscode);
137
138 SELECT setval ('"action_actionid_seq"', 21, true);
139
140 --
141 --
142
143 CREATE SEQUENCE "action_user_actionstepid_seq";
144
145 CREATE TABLE "action_user"
146 (
147         "actionstepid" bigint DEFAULT
148             nextval('"action_user_actionstepid_seq"'::text) NOT NULL,
149         "actionid" bigint,
150         "username" text,
151         "notificationid" bigint,
152         "timestamp" timestamp with time zone,
153         "statuscode" character varying(3),
154         "remarks" text
155 );
156
157 CREATE UNIQUE INDEX action_user_actionstepid_key ON action_user USING btree (actionstepid);
158
159 CREATE INDEX anu_actionid ON action_user USING btree (actionid);
160
161 CREATE INDEX anu_username ON action_user USING btree (username);
162
163 CREATE INDEX anu_notificationid ON action_user USING btree (notificationid);
164
165 CREATE INDEX anu_timestamp ON action_user USING btree ("timestamp");
166
167 CREATE INDEX anu_statuscode ON action_user USING btree (statuscode);
168
169 SELECT setval ('"action_user_actionstepid_seq"', 1, false);
170
171 --
172 --
173
174 CREATE TABLE "db_value"
175 (
176         "setting" text,
177         "setting_value" text
178 );
179
180
181 COPY "db_value" FROM stdin;
182 db_version      53
183 gcm_daemon_version      5
184 log_processing  0
185 log_servicecheck        0
186 last_notification       0
187 \.
188
189 --
190 --
191
192 CREATE TABLE "history"
193 (
194    paramid            bigint,
195    modified           timestamp,
196    change_nature      text,       --  CREATED, MODIFIED or REMOVED
197    changed_property   text,
198    new_value          text,
199    remark             text
200
201 );
202
203 CREATE INDEX history_pid_mod  ON history(paramid, modified);
204
205 --
206 --
207
208 CREATE SEQUENCE "log_logid_seq";
209
210 CREATE TABLE "log"
211 (
212         "logid" bigint DEFAULT nextval('"log_logid_seq"'::text) NOT NULL,
213         "objectid" bigint,
214         "original_filename" text,
215         "servicecode" text,
216         "object_timestamp" timestamp with time zone,
217         "timestamp" timestamp with time zone,
218         "rawdata" text,
219         "processed" boolean DEFAULT false,
220         "recognized" boolean DEFAULT false
221 );
222
223 CREATE UNIQUE INDEX log_logid_key ON log USING btree (logid);
224
225 CREATE INDEX log_objectid ON log USING btree (objectid);
226
227 CREATE INDEX log_original_filename ON log USING btree (original_filename);
228
229 CREATE INDEX log_servicecode ON log USING btree (servicecode);
230
231 CREATE INDEX log_object_timestmap ON log USING btree ("timestamp");
232
233 CREATE INDEX log_timestmap ON log USING btree ("timestamp");
234
235 CREATE INDEX log_timestamp ON log USING btree (object_timestamp);
236
237 CREATE INDEX log_processed ON log USING btree (processed);
238
239 SELECT setval ('"log_logid_seq"', 1, false);
240
241
242 CREATE TABLE log_abuse
243 (
244         logid      bigint,
245         objectid   bigint,
246         source     inet
247 );
248
249 CREATE INDEX log_ab_src ON log_abuse (source, objectid);
250 --
251 --
252
253 CREATE TABLE "log_notification"
254 (
255         "notificationid" bigint,
256         "logid" bigint
257 );
258
259 CREATE UNIQUE INDEX lon_pk ON log_notification USING btree (notificationid, logid);
260
261 CREATE INDEX lon_notificationid ON log_notification USING btree (notificationid);
262
263 CREATE INDEX lon_logid ON log_notification USING btree (logid);
264
265 --
266 --
267
268 CREATE SEQUENCE "notification_notificationid_seq";
269
270 CREATE TABLE "notification"
271 (
272         "notificationid" bigint DEFAULT
273             nextval('"notification_notificationid_seq"'::text) NOT NULL,
274         "objectid" bigint,
275         "type_of_issueid" bigint,
276         "timestamp" timestamp with time zone,
277         "statuscode" character varying(3),
278         "priority" integer,
279         "escalation_count_timestamp" timestamp with time zone,
280         "repeat_notification_timestamp" timestamp with time zone,
281         "securitylevel_view" integer,
282         "securitylevel_add" integer,
283         "securitylevel_close" integer
284 );
285
286 CREATE UNIQUE INDEX notification_notificationid_key ON notification USING btree (notificationid);
287
288 CREATE INDEX not_objectid ON notification USING btree (objectid);
289
290 CREATE INDEX not_type_of_issueid ON notification USING btree (type_of_issueid);
291
292 CREATE INDEX not_timestamp ON notification USING btree ("timestamp");
293
294 CREATE INDEX not_statuscode ON notification USING btree (statuscode);
295
296 CREATE INDEX not_priority ON notification USING btree (priority);
297
298 CREATE INDEX not_escalation_count_timestamp ON notification USING btree (escalation_count_timestamp);
299
300 CREATE INDEX not_repeat_notification_timesta ON notification USING btree (repeat_notification_timestamp);
301
302 SELECT setval ('"notification_notificationid_seq"', 1, false);
303
304 --
305 --
306
307 CREATE SEQUENCE checkid_seq;
308     
309 CREATE TABLE notification_check
310 (
311      checkid                 bigint DEFAULT nextval('checkid_seq'::text) NOT NULL,
312      checkname               TEXT,
313      description             TEXT,
314      time_between_executions INTERVAL, 
315      last_execution          timestamp,
316      execution_counter       BIGINT,
317      notificationcounter     BIGINT,
318      decreasinglist          BOOLEAN default false,
319      type_of_issueid         BIGINT
320 );
321
322 CREATE UNIQUE INDEX not_check_checkid ON notification_check (checkid);
323
324 CREATE UNIQUE INDEX not_check_checkname ON notification_check (checkname);
325
326 CREATE INDEX not_check_check_lastexec ON notification_check (last_execution);
327
328 --
329 --
330
331 CREATE TABLE notification_check_buffer
332 (
333     checkid     BIGINT,
334     sortorder   INTEGER,
335     pid         INTEGER,
336     logid       bigint
337 );
338
339 CREATE INDEX notcheckbuffer_checkid ON notification_check_buffer(checkid);
340      
341 CREATE INDEX notcheckbuffer_sort ON notification_check_buffer(sortorder);
342
343 CREATE INDEX notcheckbuffer_pid ON notification_check_buffer(pid);
344      
345 CREATE INDEX notcheckbuffer_logid ON notification_check_buffer(logid);
346
347 --
348 --
349
350 CREATE SEQUENCE checklineid_seq;
351      
352 CREATE TABLE notification_check_line
353 (
354     checklineid             BIGINT DEFAULT nextval('checklineid_seq'::text) NOT NULL,
355     checkid                 BIGINT,
356     sortorder               INTEGER,
357     last_logid              BIGINT default 0,
358     historicboundary        INTERVAL default '0',
359     use_logid               BOOLEAN default false,
360     sql_query               TEXT
361 );
362      
363 CREATE UNIQUE INDEX notcheckline_checklineid ON notification_check_line (checklineid);
364
365 CREATE INDEX notcheckline_checkid            ON notification_check_line (checkid);
366
367 CREATE INDEX notcheckline_sort               ON notification_check_line (sortorder);
368
369 CREATE INDEX notcheckline_check_sort         ON notification_check_line (checkid, sortorder);
370
371 --
372 --
373
374 CREATE SEQUENCE "object_objectid_seq";
375
376 CREATE TABLE "object"
377 (
378         "objectid" bigint DEFAULT nextval('"object_objectid_seq"'::text) NOT NULL,
379         "objectname" text,
380         "objectcode" text,
381         "scp_enabled" boolean,
382         "scp_inet" inet,
383         "mail_enabled" boolean,
384         "mail_from" text,
385         "sms_enabled" boolean,
386         "sms_number" text,
387         "fax_enabled" boolean,
388         "fax_number" text,
389         "object_description" text,
390         "object_owner" text,
391         "physical_location" text,
392         "timezone" text,
393         "remark" text,
394         "os"     text,
395         "os_version"   text,
396         "log_count"    bigint,
397         "notification_count"   bigint,
398         "parameter_count"      bigint
399 );
400
401 CREATE UNIQUE INDEX object_objectid_key ON object USING btree (objectid);
402
403 CREATE UNIQUE INDEX obj_objectname ON object USING btree (objectname);
404
405 CREATE UNIQUE INDEX obj_objectcode ON object USING btree (objectcode);
406
407 CREATE INDEX obj_mail_from ON object USING btree (mail_from);
408
409 CREATE INDEX os ON object (os);
410
411 CREATE INDEX os_version ON object (os, os_version);
412
413 SELECT setval ('"object_objectid_seq"', 1, false);
414
415 --
416 --
417
418 CREATE TABLE "object_abuse"
419 (
420         objectid   bigint,
421         source     inet,
422         nr_abuses  integer,
423         status     text,
424         last_change   timestamp,
425
426         primary key (objectid, source)
427 );
428
429 --
430 --
431
432 CREATE TABLE "object_issue"
433 (
434         "objectid" bigint,
435         "type_of_issueid" bigint,
436         "default_priority" integer,
437         "escalation" boolean,
438         "escalation_time" time without time zone,
439         "max_priority" integer,
440         "adjust_setting" text
441 );
442
443 CREATE UNIQUE INDEX obj_pk ON object_issue USING btree (objectid, type_of_issueid);
444
445 CREATE INDEX obj_objectid ON object_issue USING btree (objectid);
446
447 CREATE UNIQUE INDEX obj_type_of_notificationid ON object_issue USING btree (type_of_issueid);
448
449 --
450 --
451
452 CREATE TABLE "object_priority"
453 (
454         "objectid" bigint,
455         "priorityid" integer,
456         "send_mail" boolean,
457         "send_sms" boolean,
458         "send_fax" boolean,
459         "repeat_notification" boolean,
460         "interval_for_repeat" time without time zone
461 );
462
463 CREATE UNIQUE INDEX obi_pk ON object_priority USING btree (objectid, priorityid);
464
465 CREATE INDEX obi_objectid ON object_priority USING btree (objectid);
466
467 CREATE INDEX obi_priorityid ON object_priority USING btree (priorityid);
468
469 --
470 --
471
472 CREATE TABLE "object_service"
473 (
474         "objectid" bigint,
475         "servicecode" text,
476         "expected_interval" bigint,
477         "last_entry" timestamp with time zone,
478         "default_priority" integer,
479         "maximum_priority" integer,
480         "accepted" boolean
481 );
482
483 CREATE UNIQUE INDEX obs_pk ON object_service USING btree (objectid, servicecode);
484
485 CREATE INDEX obs_objectid ON object_service USING btree (objectid);
486
487 CREATE INDEX obs_servicecode ON object_service USING btree (servicecode);
488
489 CREATE INDEX obs_accepted ON object_service USING btree (accepted);
490
491 --
492 --
493
494 CREATE TABLE object_statistics
495 (
496     objectid       bigint,
497     statname       text,
498     statvalue      double precision,
499
500     primary key (objectid, statname)
501 );
502
503 CREATE INDEX obj_stat_objid ON object_statistics USING btree (objectid);
504
505 --
506 --
507
508 CREATE TABLE "object_user"
509 (
510         "objectid" bigint,
511         "username" text,
512         "security_level" integer
513 );
514
515 CREATE UNIQUE INDEX ous_pk ON object_user USING btree (objectid, username);
516
517 CREATE INDEX ous_objectid ON object_user USING btree (objectid);
518
519 CREATE INDEX ous_username ON object_user USING btree (username);
520
521 CREATE INDEX ous_security_level ON object_user USING btree (security_level);
522
523 --
524 --
525
526 CREATE SEQUENCE "paramid_seq";
527
528 CREATE TABLE "parameter"
529 (
530         "paramid" bigint DEFAULT nextval('"paramid_seq"'::text) NOT NULL,
531         "objectid" bigint,
532         "name" text,
533         "class" text,
534         "description" text,
535
536         primary key (paramid)
537 );
538
539 CREATE UNIQUE INDEX param_obj_name ON parameter USING btree (objectid, name, class);
540
541 SELECT setval ('"paramid_seq"', 1, true);
542
543 --
544 --
545
546 CREATE TABLE "parameter_class"
547 (
548    "name"             text,     --  Name of the class: see parameter.class
549    "property_name"    text,
550    "description"      text,
551    "property_type"    text,     --  STATIC or DYNAMIC
552    "min"              float,    --  Default minimum value
553    "max"              float,    --  Default maximum value
554    "notify"           boolean,  --  Notify if something changes ?
555
556    primary key (name, property_name)
557 );
558
559 INSERT INTO parameter_class (name, property_name, description, property_type, notify)
560   VALUES ('package', 'version', 'The installed version of the package', 'STATIC', 't');
561
562 INSERT INTO parameter_class (name, property_name, description, property_type, notify)
563   VALUES ('filesystem', 'device', 'Volume on which the filesystem resides', 'STATIC', 't');
564 INSERT INTO parameter_class (name, property_name, description, property_type, notify)
565   VALUES ('filesystem', 'size', 'Total size in kilobytes', 'STATIC', 't');
566 INSERT INTO parameter_class (name, property_name, description, property_type, min, max, notify)
567   VALUES ('filesystem', 'used', 'Number of kilobytes used', 'DYNAMIC', 0, 1000000, 't');
568 INSERT INTO parameter_class (name, property_name, description, property_type, min, max, notify)
569   VALUES ('filesystem', 'available', 'Number of kilobytes available', 'DYNAMIC', 1000, 1000000, 't');
570 INSERT INTO parameter_class (name, property_name, description, property_type, notify)
571   VALUES ('filesystem', 'Inodes', 'Total number of i-nodes', 'STATIC', 't');
572 INSERT INTO parameter_class (name, property_name, description, property_type, min, max, notify)
573   VALUES ('filesystem', 'Iused', 'Number of i-nodes used', 'DYNAMIC', 0, 1000000, 't');
574 INSERT INTO parameter_class (name, property_name, description, property_type, min, max, notify)
575   VALUES ('filesystem', 'Ifree', 'Number of i-nodes available', 'DYNAMIC', 1000, 1000000, 't');
576
577 --
578 --
579
580 CREATE TABLE "parameter_notification"
581 (
582    "notificationid" bigint,
583    "paramid"        bigint,
584
585    primary key (notificationid, paramid)
586 );
587
588 --
589 --
590
591 CREATE TABLE "priority"
592 (
593         "priority" integer,
594         "send_mail" boolean,
595         "send_sms" boolean,
596         "send_fax" boolean,
597         "repeat_notification" boolean,
598         "interval_for_repeat" time without time zone
599 );
600
601
602 CREATE UNIQUE INDEX pri_pk ON priority USING btree (priority);
603
604 --
605 --
606
607 CREATE TABLE "property"
608 (
609    paramid bigint,
610    name    text,
611    value   text,
612    type    text,   --   STATIC or DYNAMIC
613    min     float,
614    max     float,
615
616    primary key (paramid, name)
617 );
618
619 --
620 --
621
622 CREATE TABLE "service"
623 (
624         "servicecode" text,
625         "servicename" text,
626         "default_priority" integer,
627         "max_priority" integer
628 );
629
630 COPY "service" FROM stdin;
631 httpd   httpd   1       5
632 imap    imap    1       5
633 imapd   imapd   1       5
634 kernel  kernel  1       5
635 sshd    sshd    1       5
636 su      su      1       5
637 syslogd syslogd 1       5
638 CROND   Cron Daemon     1       5
639 gnucomo Gnucomo Daemon  1       5
640 sendmail        Mail Transport Agent    1       5
641 dhcpd   DHCP Daemon     1       5
642 rpc     NFS Services    1       5
643 named   DNS Services    1       5
644 xinetd  Internet Daemon 1       5
645 ipop    Post Office Protocol    1       5
646 mgetty  Serial port login and fax       1       5
647 login   User login      1       5
648 pam     Authentication modules  1       5
649 modprobe        Kernel modules  1       5
650 \.
651
652 CREATE UNIQUE INDEX ser_pk ON service USING btree (servicecode);
653
654 CREATE UNIQUE INDEX ser_servicename ON service USING btree (servicename);
655
656 CREATE TABLE service_pattern
657 (
658       service   text,
659       rank      int,
660       pattern   text,
661       action    text,
662       argument  text,
663
664       primary key (service, rank)
665 );
666
667 INSERT INTO service_pattern VALUES ('ANY', 999999, '.+', 'notify', 'unmatched log');
668 INSERT INTO service_pattern VALUES ('ANY', 999990, '[Ee][Rr][Rr][Oo][Rr]', 'notify', 'Error detected');
669 INSERT INTO service_pattern VALUES ('ANY', 999991, '[Ff][Aa][Ii][Ll]', 'notify', 'Failure detected');
670 INSERT INTO service_pattern VALUES ('ANY', 999992, '[Ww][Aa][Rr][Nn]', 'notify', 'Warning detected');
671
672 --
673
674 CREATE TABLE "status"
675 (
676         "statuscode" character varying(3),
677         "statusname" text,
678         "open_notification" boolean,
679         "description" text
680 );
681
682
683 COPY "status" FROM stdin;
684 new     new entry       t       Just detected, but nothing has been done yet
685 opn     open notification       t       The notification has been displayed to a user or a user has been notified. However nothing has been done yet.
686 pen     pending t       The notification is currently being worked on.
687 ver     waiting for verification        t       The notification has been worked on and is currently awaiting the approval/verification.
688 rej     rejected        f       The notification has been identified as a false postive and was reject. The notification is now closed
689 cls     closed  f       The notification has been closed
690 inv     needs investigation     t       The notification is currently under investigation and is awaiting additional details before one can work on this again.
691 \.
692
693 CREATE UNIQUE INDEX sta_pk ON status USING btree (statuscode);
694
695 CREATE UNIQUE INDEX sta_statusname ON status USING btree (statusname);
696
697 CREATE INDEX sta_open_notification ON status USING btree (open_notification);
698
699 --
700 --
701
702 CREATE TABLE supported_os
703 (
704     os_name text,
705     remarks text
706 );
707
708 CREATE UNIQUE INDEX spp_os ON supported_os (os_name);
709
710 --
711 --
712
713 CREATE SEQUENCE "type_of_issue_type_of_issue_seq";
714
715 CREATE TABLE "type_of_issue"
716 (
717         "type_of_issueid" bigint DEFAULT
718            nextval('"type_of_issue_type_of_issue_seq"'::text) NOT NULL,
719         "name" text,
720         "suggested_priority" text,
721         "description" text,
722         "active" boolean,
723         automated_check       boolean,
724         alert_level           int,
725         last_run              timestamp,
726         recheck_interval      timestamp
727 );
728
729
730 COPY "type_of_issue" FROM stdin;
731 1       manual entry    4       A manual entry of a notification        t       \N      \N      \N      \N
732 2       parameter created       3       A new parameter was created     t       \N      \N      \N      \N
733 3       property modified       3       The STATIC property of a parameter was modified t       \N      \N      \N      \N
734 4       parameter removed       3       A parameter was removed t       \N      \N      \N      \N
735 5       service unknown 5       Service in log entry is unknown t       \N      \N      \N      \N
736 6       service not used        5       Service in log entry is not used        t       \N      \N      \N      \N
737 7       abuses exceeded 5       Abuse treshold exceeded from an IP address      t       \N      \N      \N      \N
738 8       unmatched log   5       Log entries could not be matched        t       \N      \N      \N      \N
739 9       Error detected  5       An Error is reported in the log t       \N      \N      \N      \N
740 10      Failure detected        5       A Failure is reported in the log        t       \N      \N      \N      \N
741 11      Warning detected        3       A Warning is reported in the log        t       \N      \N      \N      \N
742 12      property out of range   5       The DYNAMIC property of a parameter is out of range     t       \N      \N      \N      \N
743 \.
744
745 CREATE UNIQUE INDEX type_of_issue_type_of_issue_key ON type_of_issue USING btree (type_of_issueid);
746
747 CREATE UNIQUE INDEX toi_name ON type_of_issue USING btree (name);
748
749 CREATE INDEX toi_active ON type_of_issue USING btree (active);
750
751 SELECT setval ('"type_of_issue_type_of_issue_seq"', 12, true);
752
753 --
754 --
755
756 CREATE TABLE "usr"
757 (
758         "username" text NOT NULL,
759         "active_sessionid" bigint,
760         "account_active" boolean,
761         "security_level" integer,
762         display_name     text,
763         email            text
764 );
765
766 CREATE UNIQUE INDEX usr_username ON usr USING btree (username);
767
768 CREATE UNIQUE INDEX usr_active_sessionid ON usr USING btree (active_sessionid);
769
770 CREATE INDEX usr_account_active ON usr USING btree (account_active);
771
772 CREATE INDEX usr_security_level ON usr USING btree (security_level);
773
774 --
775 --  Set up user groups and grant permissions in the proper places.
776
777 CREATE GROUP view;
778 CREATE GROUP ops;
779 CREATE GROUP admin;
780 CREATE GROUP daemon;
781
782 -- The default user 'gnucomo' used by the daemons
783
784 CREATE ROLE gnucomo LOGIN PASSWORD 'gnucomo' IN GROUP daemon;
785
786 GRANT SELECT ON action TO GROUP view, GROUP ops, GROUP admin;
787 GRANT SELECT ON action_user TO GROUP view, GROUP ops, GROUP admin;
788 GRANT SELECT ON db_value TO GROUP view, GROUP ops, GROUP admin;
789 GRANT SELECT ON db_value TO GROUP daemon;
790 GRANT SELECT ON history TO GROUP view, GROUP ops, GROUP admin;
791 GRANT SELECT ON history TO GROUP daemon;
792 GRANT SELECT ON log TO GROUP view, GROUP ops, GROUP admin;
793 GRANT SELECT ON log TO GROUP daemon;
794 GRANT SELECT ON log_notification TO GROUP view, GROUP ops, GROUP admin;
795 GRANT SELECT ON notification TO GROUP view, GROUP ops, GROUP admin;
796 GRANT SELECT ON notification TO GROUP daemon;
797 GRANT SELECT ON object TO GROUP view, GROUP ops, GROUP admin, GROUP daemon;
798 GRANT SELECT ON object_abuse TO GROUP view, GROUP ops, GROUP admin;
799 GRANT SELECT ON object_abuse TO GROUP daemon;
800 GRANT SELECT ON object_issue TO GROUP view, GROUP ops, GROUP admin;
801 GRANT SELECT ON object_priority TO GROUP view, GROUP ops, GROUP admin;
802 GRANT SELECT ON object_service TO GROUP view, GROUP ops, GROUP admin;
803 GRANT SELECT ON object_service TO GROUP daemon;
804 GRANT SELECT ON object_statistics TO GROUP view, GROUP ops, GROUP admin;
805 GRANT SELECT ON object_statistics TO GROUP daemon;
806 GRANT SELECT ON object_user TO GROUP view, GROUP ops, GROUP admin;
807 GRANT SELECT ON object_user TO GROUP daemon;
808 GRANT SELECT ON parameter TO GROUP view, GROUP ops, GROUP admin;
809 GRANT SELECT ON parameter TO GROUP daemon;
810 GRANT SELECT ON parameter_class TO GROUP view, GROUP ops, GROUP admin;
811 GRANT SELECT ON parameter_class TO GROUP daemon;
812 GRANT SELECT ON parameter_notification TO GROUP view, GROUP ops, GROUP admin;
813 GRANT SELECT ON parameter_notification TO GROUP daemon;
814 GRANT SELECT ON priority TO GROUP view, GROUP ops, GROUP admin;
815 GRANT SELECT ON property TO GROUP view, GROUP ops, GROUP admin;
816 GRANT SELECT ON property TO GROUP daemon;
817 GRANT SELECT ON service TO GROUP view, GROUP ops, GROUP admin;
818 GRANT SELECT ON service TO GROUP daemon;
819 GRANT SELECT ON status TO GROUP view, GROUP ops, GROUP admin;
820 GRANT SELECT ON supported_os TO GROUP view, GROUP ops, GROUP admin;
821 GRANT SELECT ON type_of_issue TO GROUP view, GROUP ops, GROUP admin;
822 GRANT SELECT ON type_of_issue TO GROUP daemon;
823 GRANT SELECT ON usr TO GROUP view, GROUP ops, GROUP admin;
824 GRANT SELECT ON usr TO GROUP daemon;
825
826 GRANT INSERT ON action_user TO GROUP ops, GROUP admin;
827 GRANT INSERT ON action_user TO GROUP daemon;
828 GRANT DELETE ON action_user TO GROUP daemon;
829 GRANT UPDATE ON action_user_actionstepid_seq TO GROUP ops, GROUP admin;
830 GRANT UPDATE ON action_user_actionstepid_seq TO GROUP daemon;
831 GRANT UPDATE ON db_value TO GROUP daemon;
832 GRANT INSERT ON log TO GROUP daemon;
833 GRANT DELETE ON log TO GROUP daemon;
834 GRANT UPDATE ON log_logid_seq TO GROUP daemon;
835 GRANT INSERT ON log_notification TO GROUP daemon;
836 GRANT SELECT ON log_notification TO GROUP daemon;
837 GRANT DELETE ON log_notification TO GROUP daemon;
838 GRANT UPDATE ON notification TO GROUP ops, GROUP admin;
839 GRANT INSERT ON notification TO GROUP daemon;
840 GRANT DELETE ON notification TO GROUP daemon;
841 GRANT INSERT ON object TO GROUP admin;
842 GRANT UPDATE ON object TO GROUP ops, GROUP admin;
843 GRANT UPDATE ON object TO GROUP daemon;
844 GRANT DELETE ON object TO GROUP admin;
845 GRANT INSERT ON object_abuse TO GROUP admin;
846 GRANT UPDATE ON object_abuse TO GROUP ops, GROUP admin;
847 GRANT DELETE ON object_abuse TO GROUP admin;
848 GRANT INSERT ON log_abuse TO GROUP daemon;
849 GRANT INSERT ON object_abuse TO GROUP daemon;
850 GRANT UPDATE ON object_abuse TO GROUP daemon;
851 GRANT INSERT ON object_statistics TO GROUP daemon;
852 GRANT UPDATE ON object_statistics TO GROUP daemon;
853
854 GRANT INSERT ON parameter_notification TO GROUP daemon;
855 GRANT INSERT ON parameter TO GROUP daemon;
856 GRANT UPDATE ON paramid_seq TO GROUP daemon;
857 GRANT UPDATE ON notification_notificationid_seq TO GROUP daemon;
858 GRANT SELECT ON notification_notificationid_seq TO GROUP daemon;
859 GRANT INSERT ON property TO GROUP daemon;
860 GRANT UPDATE ON property TO GROUP daemon;
861 GRANT INSERT ON property TO GROUP admin;
862 GRANT UPDATE ON property TO GROUP admin;
863 GRANT INSERT ON history TO GROUP daemon;
864 GRANT INSERT ON parameter_class TO GROUP admin;
865 GRANT UPDATE ON parameter_class TO GROUP admin;
866 GRANT DELETE ON parameter_class TO GROUP admin;
867
868 GRANT UPDATE ON usr TO GROUP view, GROUP ops, GROUP admin;
869 GRANT INSERT ON usr TO GROUP admin;
870 GRANT DELETE ON usr TO GROUP admin;
871 GRANT SELECT ON service_pattern TO GROUP view, GROUP ops, GROUP admin;
872 GRANT SELECT ON service_pattern TO GROUP daemon;
873 GRANT INSERT ON service_pattern TO GROUP admin;
874 GRANT UPDATE ON service_pattern TO GROUP ops, GROUP admin;
875 GRANT DELETE ON service_pattern TO GROUP admin;
876 GRANT SELECT ON log_abuse TO GROUP view, GROUP ops, GROUP admin;
877 GRANT SELECT ON log_abuse TO GROUP daemon;
878 GRANT DELETE ON log_abuse TO GROUP daemon;