diff options
author | Dan Prince <dprince@redhat.com> | 2015-02-03 08:12:12 -0500 |
---|---|---|
committer | Dan Prince <dprince@redhat.com> | 2015-02-03 08:12:12 -0500 |
commit | 994461b45130ed3f6f6981985aeac443b05e11f2 (patch) | |
tree | ea4f3105ed30661a7ee22dc34e3612c5ad834203 /templates/database/debian.cnf.erb | |
parent | bbf683b11659c6a0ed4ceddce7d24f2e9d707846 (diff) | |
parent | 6509561ab3ac08c26372d892e5937f85672bf14f (diff) |
Merge pull request #2 from enovance/mysql
First implementation of tripleo::database::mysql
Diffstat (limited to 'templates/database/debian.cnf.erb')
-rw-r--r-- | templates/database/debian.cnf.erb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/templates/database/debian.cnf.erb b/templates/database/debian.cnf.erb new file mode 100644 index 0000000..ddcc442 --- /dev/null +++ b/templates/database/debian.cnf.erb @@ -0,0 +1,13 @@ +# Managed by Puppet +# +[client] +host = localhost +user = debian-sys-maint +password = <%= @mysql_sys_maint_password %> +socket = /var/run/mysqld/mysqld.sock +[mysql_upgrade] +host = localhost +user = debian-sys-maint +password = <%= @mysql_sys_maint_password %> +socket = /var/run/mysqld/mysqld.sock +basedir = /usr |