Sfoglia il codice sorgente

update validate_config.yml

pull/2452/head
ntallasv 3 anni fa
parent
commit
b738486684
1 ha cambiato i file con 14 aggiunte e 2 eliminazioni
  1. +14
    -2
      roles/custom/matrix-bot-chatgpt/tasks/validate_config.yml

+ 14
- 2
roles/custom/matrix-bot-chatgpt/tasks/validate_config.yml Vedi File

@@ -6,5 +6,17 @@
You need to define a required configuration setting (`{{ item.name }}`).
when: "item.when | bool and vars[item.name] == ''"
with_items:
- {'name': 'matrix_bot_chatgpt_openai_api_key', when: true}
- {'name': 'matrix_bot_chatgpt_matrix_bot_username', when: true}
- { 'name': 'matrix_bot_chatgpt_openai_api_key', when: true }
- { 'name': 'matrix_bot_chatgpt_matrix_bot_username', when: true }


- name: Fail if OpenAI configuration not up-to-date.
ansible.builtin.fail:
msg: >-
Your configuration contains a varible that is no longer used.
Please change your configuration to remove the variable (`{{ item.name }}`).
when: "item.name in vars"
with_items:
- { 'name': 'matrix_bot_chatgpt_openai_email' }
- { 'name': 'matrix_bot_chatgpt_openai_password' }
- { 'name': 'matrix_bot_chatgpt_openai_login_type' }

Caricamento…
Annulla
Salva