Browse Source

typo sur register

pull/1/head
theonlydoo 9 years ago
parent
commit
408a6bc477
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      roles/mail/templates/root-postfix.sql

+ 2
- 2
roles/mail/templates/root-postfix.sql View File

@ -1,4 +1,4 @@
CREATE DATABASE postfix;
GRANT ALL PRIVILEGES ON postfix.* TO 'postfix_admin'@'%' IDENTIFIED BY '{{ dbpassword.stdout.stdout }}';
GRANT SELECT ON postfix.* TO 'postfix'@'%' IDENTIFIED BY '{{ dbpassword.stdout.stdout }}';
GRANT ALL PRIVILEGES ON postfix.* TO 'postfix_admin'@'%' IDENTIFIED BY '{{ dbpassword.stdout }}';
GRANT SELECT ON postfix.* TO 'postfix'@'%' IDENTIFIED BY '{{ dbpassword.stdout }}';
FLUSH PRIVILEGES;

Loading…
Cancel
Save