websoft9/apps/roles/mysql/tasks/pre.yml

28 lines
625 B
YAML
Raw Normal View History

2022-07-18 16:41:04 +08:00
- pause:
prompt: |
Choice MySQL version:
0: MySQL8.0
1: MySQL5.7
2022-07-25 17:45:52 +08:00
2: MySQL5.6
3: MySQL5.5
2022-07-18 16:41:04 +08:00
private: no
Default:0
2022-07-19 17:41:20 +08:00
register: mysql_version_options
2022-07-15 08:56:27 +08:00
2022-07-18 16:41:04 +08:00
- set_fact:
mysql_version_meta:
"0": "8.0"
"1": "5.7"
2022-07-25 17:45:52 +08:00
"2": "5.6"
"3": "5.5"
2022-07-18 16:41:04 +08:00
- set_fact:
2022-07-19 17:41:20 +08:00
mysql_version: "{{mysql_version_meta[mysql_version_options.user_input]}}"
2022-07-18 16:41:04 +08:00
- debug:
msg: "mysql_version is {{mysql_version}}"
- name: Config .env for start containers
shell: |
sed -i 's/APP_VERSION=.*/APP_VERSION={{mysql_version}}/g' {{installpath}}/{{appname}}/.env