Update pre.yml

This commit is contained in:
qiaofeng1227 2022-07-18 16:41:04 +08:00 committed by GitHub
parent d2a3013587
commit 677c648eb3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1 +1,23 @@
- pause:
prompt: |
Choice MySQL version:
0: MySQL8.0
1: MySQL5.7
private: no
Default:0
register: version_options
- set_fact:
mysql_version_meta:
"0": "8.0"
"1": "5.7"
- set_fact:
mysql_version: "{{mysql_version_meta[version_options.user_input]}}"
- 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