Added GRANTS in the database for the admin group.
[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 --
250 --
251
252 CREATE TABLE "log_notification"
253 (
254         "notificationid" bigint,
255         "logid" bigint
256 );
257
258 CREATE UNIQUE INDEX lon_pk ON log_notification USING btree (notificationid, logid);
259
260 CREATE INDEX lon_notificationid ON log_notification USING btree (notificationid);
261
262 CREATE INDEX lon_logid ON log_notification USING btree (logid);
263
264 --
265 --
266
267 CREATE SEQUENCE "notification_notificationid_seq";
268
269 CREATE TABLE "notification"
270 (
271         "notificationid" bigint DEFAULT
272             nextval('"notification_notificationid_seq"'::text) NOT NULL,
273         "objectid" bigint,
274         "type_of_issueid" bigint,
275         "timestamp" timestamp with time zone,
276         "statuscode" character varying(3),
277         "priority" integer,
278         "escalation_count_timestamp" timestamp with time zone,
279         "repeat_notification_timestamp" timestamp with time zone,
280         "securitylevel_view" integer,
281         "securitylevel_add" integer,
282         "securitylevel_close" integer
283 );
284
285 CREATE UNIQUE INDEX notification_notificationid_key ON notification USING btree (notificationid);
286
287 CREATE INDEX not_objectid ON notification USING btree (objectid);
288
289 CREATE INDEX not_type_of_issueid ON notification USING btree (type_of_issueid);
290
291 CREATE INDEX not_timestamp ON notification USING btree ("timestamp");
292
293 CREATE INDEX not_statuscode ON notification USING btree (statuscode);
294
295 CREATE INDEX not_priority ON notification USING btree (priority);
296
297 CREATE INDEX not_escalation_count_timestamp ON notification USING btree (escalation_count_timestamp);
298
299 CREATE INDEX not_repeat_notification_timesta ON notification USING btree (repeat_notification_timestamp);
300
301 SELECT setval ('"notification_notificationid_seq"', 1, false);
302
303 --
304 --
305
306 CREATE SEQUENCE checkid_seq;
307     
308 CREATE TABLE notification_check
309 (
310      checkid                 bigint DEFAULT nextval('checkid_seq'::text) NOT NULL,
311      checkname               TEXT,
312      description             TEXT,
313      time_between_executions INTERVAL, 
314      last_execution          timestamp,
315      execution_counter       BIGINT,
316      notificationcounter     BIGINT,
317      decreasinglist          BOOLEAN default false,
318      type_of_issueid         BIGINT
319 );
320
321 CREATE UNIQUE INDEX not_check_checkid ON notification_check (checkid);
322
323 CREATE UNIQUE INDEX not_check_checkname ON notification_check (checkname);
324
325 CREATE INDEX not_check_check_lastexec ON notification_check (last_execution);
326
327 --
328 --
329
330 CREATE TABLE notification_check_buffer
331 (
332     checkid     BIGINT,
333     sortorder   INTEGER,
334     pid         INTEGER,
335     logid       bigint
336 );
337
338 CREATE INDEX notcheckbuffer_checkid ON notification_check_buffer(checkid);
339      
340 CREATE INDEX notcheckbuffer_sort ON notification_check_buffer(sortorder);
341
342 CREATE INDEX notcheckbuffer_pid ON notification_check_buffer(pid);
343      
344 CREATE INDEX notcheckbuffer_logid ON notification_check_buffer(logid);
345
346 --
347 --
348
349 CREATE SEQUENCE checklineid_seq;
350      
351 CREATE TABLE notification_check_line
352 (
353     checklineid             BIGINT DEFAULT nextval('checklineid_seq'::text) NOT NULL,
354     checkid                 BIGINT,
355     sortorder               INTEGER,
356     last_logid              BIGINT default 0,
357     historicboundary        INTERVAL default '0',
358     use_logid               BOOLEAN default false,
359     sql_query               TEXT
360 );
361      
362 CREATE UNIQUE INDEX notcheckline_checklineid ON notification_check_line (checklineid);
363
364 CREATE INDEX notcheckline_checkid            ON notification_check_line (checkid);
365
366 CREATE INDEX notcheckline_sort               ON notification_check_line (sortorder);
367
368 CREATE INDEX notcheckline_check_sort         ON notification_check_line (checkid, sortorder);
369
370 --
371 --
372
373 CREATE SEQUENCE "object_objectid_seq";
374
375 CREATE TABLE "object"
376 (
377         "objectid" bigint DEFAULT nextval('"object_objectid_seq"'::text) NOT NULL,
378         "objectname" text,
379         "objectcode" text,
380         "scp_enabled" boolean,
381         "scp_inet" inet,
382         "mail_enabled" boolean,
383         "mail_from" text,
384         "sms_enabled" boolean,
385         "sms_number" text,
386         "fax_enabled" boolean,
387         "fax_number" text,
388         "object_description" text,
389         "object_owner" text,
390         "physical_location" text,
391         "timezone" text,
392         "remark" text,
393         "os"     text,
394         "os_version"   text,
395         "log_count"    bigint,
396         "notification_count"   bigint,
397         "parameter_count"      bigint
398 );
399
400 CREATE UNIQUE INDEX object_objectid_key ON object USING btree (objectid);
401
402 CREATE UNIQUE INDEX obj_objectname ON object USING btree (objectname);
403
404 CREATE UNIQUE INDEX obj_objectcode ON object USING btree (objectcode);
405
406 CREATE INDEX obj_mail_from ON object USING btree (mail_from);
407
408 CREATE INDEX os ON object (os);
409
410 CREATE INDEX os_version ON object (os, os_version);
411
412 SELECT setval ('"object_objectid_seq"', 1, false);
413
414 --
415 --
416
417 CREATE TABLE "object_abuse"
418 (
419         objectid   bigint,
420         source     inet,
421         nr_abuses  integer,
422         status     text,
423         last_change   timestamp,
424
425         primary key (objectid, source)
426 );
427
428 --
429 --
430
431 CREATE TABLE "object_issue"
432 (
433         "objectid" bigint,
434         "type_of_issueid" bigint,
435         "default_priority" integer,
436         "escalation" boolean,
437         "escalation_time" time without time zone,
438         "max_priority" integer,
439         "adjust_setting" text
440 );
441
442 CREATE UNIQUE INDEX obj_pk ON object_issue USING btree (objectid, type_of_issueid);
443
444 CREATE INDEX obj_objectid ON object_issue USING btree (objectid);
445
446 CREATE UNIQUE INDEX obj_type_of_notificationid ON object_issue USING btree (type_of_issueid);
447
448 --
449 --
450
451 CREATE TABLE "object_priority"
452 (
453         "objectid" bigint,
454         "priorityid" integer,
455         "send_mail" boolean,
456         "send_sms" boolean,
457         "send_fax" boolean,
458         "repeat_notification" boolean,
459         "interval_for_repeat" time without time zone
460 );
461
462 CREATE UNIQUE INDEX obi_pk ON object_priority USING btree (objectid, priorityid);
463
464 CREATE INDEX obi_objectid ON object_priority USING btree (objectid);
465
466 CREATE INDEX obi_priorityid ON object_priority USING btree (priorityid);
467
468 --
469 --
470
471 CREATE TABLE "object_service"
472 (
473         "objectid" bigint,
474         "servicecode" text,
475         "expected_interval" bigint,
476         "last_entry" timestamp with time zone,
477         "default_priority" integer,
478         "maximum_priority" integer,
479         "accepted" boolean
480 );
481
482 CREATE UNIQUE INDEX obs_pk ON object_service USING btree (objectid, servicecode);
483
484 CREATE INDEX obs_objectid ON object_service USING btree (objectid);
485
486 CREATE INDEX obs_servicecode ON object_service USING btree (servicecode);
487
488 CREATE INDEX obs_accepted ON object_service USING btree (accepted);
489
490 --
491 --
492
493 CREATE TABLE object_statistics
494 (
495     objectid       bigint,
496     statname       text,
497     statvalue      double precision,
498
499     primary key (objectid, statname)
500 );
501
502 CREATE INDEX obj_stat_objid ON object_statistics USING btree (objectid);
503
504 --
505 --
506
507 CREATE TABLE "object_user"
508 (
509         "objectid" bigint,
510         "username" text,
511         "security_level" integer
512 );
513
514 CREATE UNIQUE INDEX ous_pk ON object_user USING btree (objectid, username);
515
516 CREATE INDEX ous_objectid ON object_user USING btree (objectid);
517
518 CREATE INDEX ous_username ON object_user USING btree (username);
519
520 CREATE INDEX ous_security_level ON object_user USING btree (security_level);
521
522 --
523 --
524
525 CREATE SEQUENCE "paramid_seq";
526
527 CREATE TABLE "parameter"
528 (
529         "paramid" bigint DEFAULT nextval('"paramid_seq"'::text) NOT NULL,
530         "objectid" bigint,
531         "name" text,
532         "class" text,
533         "description" text,
534
535         primary key (paramid)
536 );
537
538 CREATE UNIQUE INDEX param_obj_name ON parameter USING btree (objectid, name, class);
539
540 SELECT setval ('"paramid_seq"', 1, true);
541
542 --
543 --
544
545 CREATE TABLE "parameter_class"
546 (
547    "name"             text,     --  Name of the class: see parameter.class
548    "property_name"    text,
549    "description"      text,
550    "property_type"    text,     --  STATIC or DYNAMIC
551    "min"              float,    --  Default minimum value
552    "max"              float,    --  Default maximum value
553    "notify"           boolean,  --  Notify if something changes ?
554
555    primary key (name, property_name)
556 );
557
558 INSERT INTO parameter_class (name, property_name, description, property_type, notify)
559   VALUES ('package', 'version', 'The installed version of the package', 'STATIC', 't');
560
561 INSERT INTO parameter_class (name, property_name, description, property_type, notify)
562   VALUES ('filesystem', 'device', 'Volume on which the filesystem resides', 'STATIC', 't');
563 INSERT INTO parameter_class (name, property_name, description, property_type, notify)
564   VALUES ('filesystem', 'size', 'Total size in kilobytes', 'STATIC', 't');
565 INSERT INTO parameter_class (name, property_name, description, property_type, min, max, notify)
566   VALUES ('filesystem', 'used', 'Number of kilobytes used', 'DYNAMIC', 0, 1000000, 't');
567 INSERT INTO parameter_class (name, property_name, description, property_type, min, max, notify)
568   VALUES ('filesystem', 'available', 'Number of kilobytes available', 'DYNAMIC', 1000, 1000000, 't');
569 INSERT INTO parameter_class (name, property_name, description, property_type, notify)
570   VALUES ('filesystem', 'Inodes', 'Total number of i-nodes', 'STATIC', 't');
571 INSERT INTO parameter_class (name, property_name, description, property_type, min, max, notify)
572   VALUES ('filesystem', 'Iused', 'Number of i-nodes used', 'DYNAMIC', 0, 1000000, 't');
573 INSERT INTO parameter_class (name, property_name, description, property_type, min, max, notify)
574   VALUES ('filesystem', 'Ifree', 'Number of i-nodes available', 'DYNAMIC', 1000, 1000000, 't');
575
576 --
577 --
578
579 CREATE TABLE "parameter_notification"
580 (
581    "notificationid" bigint,
582    "paramid"        bigint,
583
584    primary key (notificationid, paramid)
585 );
586
587 --
588 --
589
590 CREATE TABLE "priority"
591 (
592         "priority" integer,
593         "send_mail" boolean,
594         "send_sms" boolean,
595         "send_fax" boolean,
596         "repeat_notification" boolean,
597         "interval_for_repeat" time without time zone
598 );
599
600
601 CREATE UNIQUE INDEX pri_pk ON priority USING btree (priority);
602
603 --
604 --
605
606 CREATE TABLE "property"
607 (
608    paramid bigint,
609    name    text,
610    value   text,
611    type    text,   --   STATIC or DYNAMIC
612    min     float,
613    max     float,
614
615    primary key (paramid, name)
616 );
617
618 --
619 --
620
621 CREATE TABLE "service"
622 (
623         "servicecode" text,
624         "servicename" text,
625         "default_priority" integer,
626         "max_priority" integer
627 );
628
629 COPY "service" FROM stdin;
630 httpd   httpd   1       5
631 imap    imap    1       5
632 imapd   imapd   1       5
633 kernel  kernel  1       5
634 sshd    sshd    1       5
635 su      su      1       5
636 syslogd syslogd 1       5
637 CROND   Cron Daemon     1       5
638 gnucomo Gnucomo Daemon  1       5
639 sendmail        Mail Transport Agent    1       5
640 dhcpd   DHCP Daemon     1       5
641 rpc     NFS Services    1       5
642 named   DNS Services    1       5
643 xinetd  Internet Daemon 1       5
644 ipop    Post Office Protocol    1       5
645 mgetty  Serial port login and fax       1       5
646 login   User login      1       5
647 pam     Authentication modules  1       5
648 modprobe        Kernel modules  1       5
649 \.
650
651 CREATE UNIQUE INDEX ser_pk ON service USING btree (servicecode);
652
653 CREATE UNIQUE INDEX ser_servicename ON service USING btree (servicename);
654
655 CREATE TABLE service_pattern
656 (
657       service   text,
658       rank      int,
659       pattern   text,
660       action    text,
661       argument  text,
662
663       primary key (service, rank)
664 );
665
666 INSERT INTO service_pattern VALUES ('ANY', 999999, '.+', 'notify', 'unmatched log');
667 INSERT INTO service_pattern VALUES ('ANY', 999990, '[Ee][Rr][Rr][Oo][Rr]', 'notify', 'Error detected');
668 INSERT INTO service_pattern VALUES ('ANY', 999991, '[Ff][Aa][Ii][Ll]', 'notify', 'Failure detected');
669 INSERT INTO service_pattern VALUES ('ANY', 999992, '[Ww][Aa][Rr][Nn]', 'notify', 'Warning detected');
670
671 --
672
673 CREATE TABLE "status"
674 (
675         "statuscode" character varying(3),
676         "statusname" text,
677         "open_notification" boolean,
678         "description" text
679 );
680
681
682 COPY "status" FROM stdin;
683 new     new entry       t       Just detected, but nothing has been done yet
684 opn     open notification       t       The notification has been displayed to a user or a user has been notified. However nothing has been done yet.
685 pen     pending t       The notification is currently being worked on.
686 ver     waiting for verification        t       The notification has been worked on and is currently awaiting the approval/verification.
687 rej     rejected        f       The notification has been identified as a false postive and was reject. The notification is now closed
688 cls     closed  f       The notification has been closed
689 inv     needs investigation     t       The notification is currently under investigation and is awaiting additional details before one can work on this again.
690 \.
691
692 CREATE UNIQUE INDEX sta_pk ON status USING btree (statuscode);
693
694 CREATE UNIQUE INDEX sta_statusname ON status USING btree (statusname);
695
696 CREATE INDEX sta_open_notification ON status USING btree (open_notification);
697
698 --
699 --
700
701 CREATE TABLE supported_os
702 (
703     os_name text,
704     remarks text
705 );
706
707 CREATE UNIQUE INDEX spp_os ON supported_os (os_name);
708
709 --
710 --
711
712 CREATE SEQUENCE "type_of_issue_type_of_issue_seq";
713
714 CREATE TABLE "type_of_issue"
715 (
716         "type_of_issueid" bigint DEFAULT
717            nextval('"type_of_issue_type_of_issue_seq"'::text) NOT NULL,
718         "name" text,
719         "suggested_priority" text,
720         "description" text,
721         "active" boolean,
722         automated_check       boolean,
723         alert_level           int,
724         last_run              timestamp,
725         recheck_interval      timestamp
726 );
727
728
729 COPY "type_of_issue" FROM stdin;
730 1       manual entry    4       A manual entry of a notification        t       \N      \N      \N      \N
731 2       parameter created       3       A new parameter was created     t       \N      \N      \N      \N
732 3       property modified       3       The STATIC property of a parameter was modified t       \N      \N      \N      \N
733 4       parameter removed       3       A parameter was removed t       \N      \N      \N      \N
734 5       service unknown 5       Service in log entry is unknown t       \N      \N      \N      \N
735 6       service not used        5       Service in log entry is not used        t       \N      \N      \N      \N
736 7       abuses exceeded 5       Abuse treshold exceeded from an IP address      t       \N      \N      \N      \N
737 8       unmatched log   5       Log entries could not be matched        t       \N      \N      \N      \N
738 9       Error detected  5       An Error is reported in the log t       \N      \N      \N      \N
739 10      Failure detected        5       A Failure is reported in the log        t       \N      \N      \N      \N
740 11      Warning detected        3       A Warning is reported in the log        t       \N      \N      \N      \N
741 12      property out of range   5       The DYNAMIC property of a parameter is out of range     t       \N      \N      \N      \N
742 \.
743
744 CREATE UNIQUE INDEX type_of_issue_type_of_issue_key ON type_of_issue USING btree (type_of_issueid);
745
746 CREATE UNIQUE INDEX toi_name ON type_of_issue USING btree (name);
747
748 CREATE INDEX toi_active ON type_of_issue USING btree (active);
749
750 SELECT setval ('"type_of_issue_type_of_issue_seq"', 12, true);
751
752 --
753 --
754
755 CREATE TABLE "usr"
756 (
757         "username" text NOT NULL,
758         "active_sessionid" bigint,
759         "account_active" boolean,
760         "security_level" integer,
761         display_name     text,
762         email            text
763 );
764
765 CREATE UNIQUE INDEX usr_username ON usr USING btree (username);
766
767 CREATE UNIQUE INDEX usr_active_sessionid ON usr USING btree (active_sessionid);
768
769 CREATE INDEX usr_account_active ON usr USING btree (account_active);
770
771 CREATE INDEX usr_security_level ON usr USING btree (security_level);
772
773 --
774 --  Set up user groups and grant permissions in the proper places.
775
776 CREATE GROUP view;
777 CREATE GROUP ops;
778 CREATE GROUP admin;
779 CREATE GROUP daemon;
780
781 -- The default user 'gnucomo' used by the daemons
782
783 CREATE ROLE gnucomo LOGIN PASSWORD 'gnucomo' IN GROUP daemon;
784
785 GRANT SELECT ON action TO GROUP view, GROUP ops, GROUP admin;
786 GRANT SELECT ON action_user TO GROUP view, GROUP ops, GROUP admin;
787 GRANT SELECT ON db_value TO GROUP view, GROUP ops, GROUP admin;
788 GRANT SELECT ON db_value TO GROUP daemon;
789 GRANT SELECT ON history TO GROUP view, GROUP ops, GROUP admin;
790 GRANT SELECT ON history TO GROUP daemon;
791 GRANT SELECT ON log TO GROUP view, GROUP ops, GROUP admin;
792 GRANT SELECT ON log TO GROUP daemon;
793 GRANT SELECT ON log_notification TO GROUP view, GROUP ops, GROUP admin;
794 GRANT SELECT ON notification TO GROUP view, GROUP ops, GROUP admin;
795 GRANT SELECT ON notification TO GROUP daemon;
796 GRANT SELECT ON object TO GROUP view, GROUP ops, GROUP admin, GROUP daemon;
797 GRANT SELECT ON object_abuse TO GROUP view, GROUP ops, GROUP admin;
798 GRANT SELECT ON object_abuse TO GROUP daemon;
799 GRANT SELECT ON object_issue TO GROUP view, GROUP ops, GROUP admin;
800 GRANT SELECT ON object_priority TO GROUP view, GROUP ops, GROUP admin;
801 GRANT SELECT ON object_service TO GROUP view, GROUP ops, GROUP admin;
802 GRANT SELECT ON object_service TO GROUP daemon;
803 GRANT SELECT ON object_statistics TO GROUP view, GROUP ops, GROUP admin;
804 GRANT SELECT ON object_statistics TO GROUP daemon;
805 GRANT SELECT ON object_user TO GROUP view, GROUP ops, GROUP admin;
806 GRANT SELECT ON object_user TO GROUP daemon;
807 GRANT SELECT ON parameter TO GROUP view, GROUP ops, GROUP admin;
808 GRANT SELECT ON parameter TO GROUP daemon;
809 GRANT SELECT ON parameter_class TO GROUP view, GROUP ops, GROUP admin;
810 GRANT SELECT ON parameter_class TO GROUP daemon;
811 GRANT SELECT ON parameter_notification TO GROUP view, GROUP ops, GROUP admin;
812 GRANT SELECT ON parameter_notification TO GROUP daemon;
813 GRANT SELECT ON priority TO GROUP view, GROUP ops, GROUP admin;
814 GRANT SELECT ON property TO GROUP view, GROUP ops, GROUP admin;
815 GRANT SELECT ON property TO GROUP daemon;
816 GRANT SELECT ON service TO GROUP view, GROUP ops, GROUP admin;
817 GRANT SELECT ON service TO GROUP daemon;
818 GRANT SELECT ON status TO GROUP view, GROUP ops, GROUP admin;
819 GRANT SELECT ON supported_os TO GROUP view, GROUP ops, GROUP admin;
820 GRANT SELECT ON type_of_issue TO GROUP view, GROUP ops, GROUP admin;
821 GRANT SELECT ON type_of_issue TO GROUP daemon;
822 GRANT SELECT ON usr TO GROUP view, GROUP ops, GROUP admin;
823 GRANT SELECT ON usr TO GROUP daemon;
824
825 GRANT INSERT ON action_user TO GROUP ops, GROUP admin;
826 GRANT INSERT ON action_user TO GROUP daemon;
827 GRANT DELETE ON action_user TO GROUP daemon;
828 GRANT UPDATE ON action_user_actionstepid_seq TO GROUP ops, GROUP admin;
829 GRANT UPDATE ON action_user_actionstepid_seq TO GROUP daemon;
830 GRANT UPDATE ON db_value TO GROUP daemon;
831 GRANT INSERT ON log TO GROUP daemon;
832 GRANT DELETE ON log TO GROUP daemon;
833 GRANT UPDATE ON log_logid_seq TO GROUP daemon;
834 GRANT INSERT ON log_notification TO GROUP daemon;
835 GRANT SELECT ON log_notification TO GROUP daemon;
836 GRANT DELETE ON log_notification TO GROUP daemon;
837 GRANT UPDATE ON notification TO GROUP ops, GROUP admin;
838 GRANT INSERT ON notification TO GROUP daemon;
839 GRANT DELETE ON notification TO GROUP daemon;
840 GRANT INSERT ON object TO GROUP admin;
841 GRANT UPDATE ON object TO GROUP ops, GROUP admin;
842 GRANT UPDATE ON object TO GROUP daemon;
843 GRANT DELETE ON object TO GROUP admin;
844 GRANT INSERT ON object_abuse TO GROUP admin;
845 GRANT UPDATE ON object_abuse TO GROUP ops, GROUP admin;
846 GRANT DELETE ON object_abuse TO GROUP admin;
847 GRANT INSERT ON log_abuse TO GROUP daemon;
848 GRANT INSERT ON object_abuse TO GROUP daemon;
849 GRANT UPDATE ON object_abuse TO GROUP daemon;
850 GRANT INSERT ON object_statistics TO GROUP daemon;
851 GRANT UPDATE ON object_statistics TO GROUP daemon;
852
853 GRANT INSERT ON parameter_notification TO GROUP daemon;
854 GRANT INSERT ON parameter TO GROUP daemon;
855 GRANT UPDATE ON paramid_seq TO GROUP daemon;
856 GRANT UPDATE ON notification_notificationid_seq TO GROUP daemon;
857 GRANT SELECT ON notification_notificationid_seq TO GROUP daemon;
858 GRANT INSERT ON property TO GROUP daemon;
859 GRANT UPDATE ON property TO GROUP daemon;
860 GRANT INSERT ON property TO GROUP admin;
861 GRANT UPDATE ON property TO GROUP admin;
862 GRANT INSERT ON history TO GROUP daemon;
863 GRANT INSERT ON parameter_class TO GROUP admin;
864 GRANT UPDATE ON parameter_class TO GROUP admin;
865 GRANT DELETE ON parameter_class TO GROUP admin;
866
867 GRANT UPDATE ON usr TO GROUP view, GROUP ops, GROUP admin;
868 GRANT INSERT ON usr TO GROUP admin;
869 GRANT DELETE ON usr TO GROUP admin;
870 GRANT SELECT ON service_pattern TO GROUP view, GROUP ops, GROUP admin;
871 GRANT SELECT ON service_pattern TO GROUP daemon;
872 GRANT INSERT ON service_pattern TO GROUP admin;
873 GRANT UPDATE ON service_pattern TO GROUP ops, GROUP admin;
874 GRANT DELETE ON service_pattern TO GROUP admin;
875 GRANT SELECT ON log_abuse TO GROUP view, GROUP ops, GROUP admin;
876 GRANT SELECT ON log_abuse TO GROUP daemon;
877 GRANT DELETE ON log_abuse TO GROUP daemon;