Update pre.yml

This commit is contained in:
qiaofeng1227 2022-07-23 10:05:03 +08:00 committed by GitHub
parent f300164369
commit c43a2e7773
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1 +1,23 @@
- pause:
prompt: |
Choice Zabbix version:
0: Zabbix5.4
1: Zabbix5.2
private: no
Default:0
register: zabbix_version_options
- set_fact:
zabbix_version_meta:
"0": "5.4"
"1": "5.2"
- set_fact:
zabbix_version: "{{zabbix_version_meta[zabbix_version_options.user_input]}}"
- debug:
msg: "zabbix_version is {{zabbix_version}}"
- name: Config .env for start containers
shell: |
sed -i 's/APP_VERSION=.*/APP_VERSION=v{{zabbix_version}}/g' {{installpath}}/{{appname}}/.env