From ccc7fab75c583fc3f3e25985b4a18c047fb8703a Mon Sep 17 00:00:00 2001 From: Ricky Zhou Date: Tue, 11 Mar 2008 19:58:16 -0400 Subject: [PATCH] Add toshio's fas2.sql fix, minus old email table grants. --- fas/fas2.sql | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/fas/fas2.sql b/fas/fas2.sql index feedd0c..5b2aa56 100644 --- a/fas/fas2.sql +++ b/fas/fas2.sql @@ -579,7 +579,9 @@ create trigger email_bugzilla_sync before update -- for each row execute procedure bugzilla_sync_email(); -- For Fas to connect to the database -GRANT ALL ON TABLE people, groups, person_roles, person_emails, email_purposes, group_roles, group_emails, group_email_purposes, bugzilla_queue, configs, person_seq, visit, visit_identity, log, log_id_seq, person_emails_id_seq, group_emails_id_seq TO GROUP fedora; +GRANT ALL ON TABLE people, groups, person_roles, group_roles, bugzilla_queue, configs, person_seq, visit, visit_identity, log, log_id_seq, TO GROUP fedora; + + -- Create default admin user - Default Password "admin" INSERT INTO people (id, username, human_name, password) VALUES (100001, 'admin', 'Admin User', '$1$djFfnacd$b6NFqFlac743Lb4sKWXj4/');