This commit is contained in:
zhangzhihan
2020-06-01 12:19:54 +08:00
parent cf38475612
commit a31ac9eb7d
6 changed files with 23 additions and 21 deletions

View File

@@ -129,25 +129,5 @@
- name: "set mariadb privileges"
shell: mysql -uroot -p{{ mariadb.password }} -e "grant all privileges on *.* to root@'%' identified by '111111' with grant option;"
shell: mysql -uroot -p{{ mariadb.password }} -e "flush privileges;"
shell: mysql -uroot -p{{ mariadb.password }} -e "create database tsg_oam"
when: return.rc != 0
- name: "get remote tsg sn"
shell: cat /opt/tsg/etc/tsg_sn.json | grep sn | awk -F "\"" {'print $4'}
register: adc_tsg_sn
when: return.rc != 0
- name: "Templates tsg_threshold.sql"
template:
src: "{{role_path}}/templates/tsg_threshold.sql.j2"
dest: /tmp/tsg-cli-deploy/tsg_threshold.sql
tags: template
when: return.rc != 0
- name: "debug show tsg_sn"
debug: var=adc_tsg_sn.stdout
when: return.rc != 0
- name: "import the sql after template"
shell: mysql -s -h 127.0.0.1 -u {{ mariadb.username }} -p{{ mariadb.password }} < /tmp/tsg-cli-deploy/tsg_threshold.sql
when: return.rc != 0

View File

@@ -1 +0,0 @@
mysql -s -h $host -u $user -p$passwd $dbname < tsg_threshold.sql

View File

@@ -24,3 +24,9 @@
template:
src: "{{ role_path }}/templates/oam_core.service.j2"
dest: /usr/lib/systemd/system/oam_core.service
- name: "copy /usr/local/bin/mysql to destination server"
copy:
src: "{{ role_path }}/files/mysql"
dest: /usr/local/bin
mode: 0755

BIN
roles/setup_mariadb/files/mysql Executable file

Binary file not shown.

View File

@@ -0,0 +1,17 @@
- name: "judge tsg_oam"
shell: mysql -uroot -p111111 -e "show databases;" |grep tsg_oam
register: return
ignore_errors: true
- name: "set tsg_oam database"
shell: mysql -uroot -p{{ mariadb.password }} -e "create database tsg_oam"
when: return.rc != 0
- name: "Templates tsg_threshold.sql"
template:
src: "{{role_path}}/templates/tsg_threshold.sql.j2"
dest: /tmp/tsg-cli-deploy/tsg_threshold.sql
tags: template
- name: "import the sql after template"
shell: mysql -s -h 127.0.0.1 -u {{ mariadb.username }} -p{{ mariadb.password }} < /tmp/tsg-cli-deploy/tsg_threshold.sql