Merge pull request #412 from hughsaunders/root_creds_for_galera_dsm

Use root pass for galera init script
This commit is contained in:
Matt Thompson 2014-10-29 08:36:51 +00:00
commit a268cc63c8
4 changed files with 4 additions and 16 deletions

View File

@ -37,7 +37,6 @@ container_openstack_password:
## Galera Options
mysql_root_password:
mysql_debian_sys_maint_password:
## Keystone Options

View File

@ -23,8 +23,6 @@ mysql_client_host: 127.0.0.1
container_lvm_fstype: ext4
container_lvm_fssize: 5GB
debian_sys_maint_password: "{{ mysql_debian_sys_maint_password }}"
# Size of the galera cache
galera_gcache_size: 1G

View File

@ -1,11 +1,11 @@
[client]
host = localhost
user = debian-sys-maint
password = {{ debian_sys_maint_password }}
user = root
password = {{ mysql_password }}
socket = /var/run/mysqld/mysqld.sock
[mysql_upgrade]
host = localhost
user = debian-sys-maint
password = {{ debian_sys_maint_password }}
user = root
password = {{ mysql_password }}
socket = /var/run/mysqld/mysqld.sock
basedir = /usr

View File

@ -13,9 +13,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# Debian-sys-maint account is used to start/stop mysql. The password is auto
# generated but must be the same otherwise once data is synced, two nodes
# will not be able to start/stop mysql.
- name: Create mysql users
mysql_user:
name: "{{ item.name }}"
@ -36,12 +33,6 @@
priv: "*.*:ALL"
state: absent
- name: "debian-sys-maint"
host: 'localhost'
password: "{{ debian_sys_maint_password }}"
priv: "*.*:ALL"
state: present
- name: haproxy
host: '%'
password: ""