diff --git a/tasks/configure-dbs.yml b/tasks/configure-dbs.yml index 177e0bc..973cbe4 100644 --- a/tasks/configure-dbs.yml +++ b/tasks/configure-dbs.yml @@ -1,24 +1,24 @@ --- - yum: name=http://repo.mysql.com/mysql-community-release-el7-5.noarch.rpm state=present - yum: name="{{ item }}" state=latest update_cache=yes with_items: - vim - git - ntp - - mysql-server + - mysql-community-server - MySQL-python notify: restart mysql - name: Create database user mysql_user: state=present user={{ mysql_user }} password={{ mysql_pass}} priv=*.*:ALL host={{ groups['app'][0] }}