harbor/make/common/templates/notary/mysql-initdb.d/initial-notarysigner.sql

8 lines
180 B
MySQL
Raw Normal View History

2017-02-20 11:40:05 +01:00
CREATE DATABASE IF NOT EXISTS `notarysigner`;
2017-03-22 11:15:16 +01:00
CREATE USER "signer"@"notary-signer.%" IDENTIFIED BY "";
2017-02-20 11:40:05 +01:00
GRANT
ALL PRIVILEGES ON `notarysigner`.*
2017-03-22 11:15:16 +01:00
TO "signer"@"notary-signer.%";