diff options
author | Michael Scherer <misc@redhat.com> | 2017-11-18 00:10:35 +0100 |
---|---|---|
committer | Michael Scherer <misc@redhat.com> | 2017-11-18 00:16:05 +0100 |
commit | 4e984859529e9d0c8437620522730a174f835b56 (patch) | |
tree | 5dec79ef7c8489adc728a45616fce1c53a125fe7 /roles/mariadb/tasks | |
parent | 93d331a8790d46c3dcebc1aedfe7a06c8ed3a4d0 (diff) |
Add mariadb module
Diffstat (limited to 'roles/mariadb/tasks')
-rw-r--r-- | roles/mariadb/tasks/main.yml | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/roles/mariadb/tasks/main.yml b/roles/mariadb/tasks/main.yml deleted file mode 100644 index b6a4fe6..0000000 --- a/roles/mariadb/tasks/main.yml +++ /dev/null @@ -1,16 +0,0 @@ ---- -- yum: name={{ item }} state=installed - with_items: - - mariadb-server - - MySQL-python - -- template: src=custom.cnf dest=/etc/my.cnf.d/custom.cnf - notify: restart mariadb - -- template: src=my.cnf dest=/root/.my.cnf mode=600 owner=root group=root - -- service: name=mariadb enabled=yes state=started - -- copy: mode=0755 src=dump_mariadb.sh dest=/usr/local/bin/dump_mariadb.sh - -- cron: minute=15 hour=4 name="backup mariadb" job=/usr/local/bin/dump_mariadb.sh |