Ansible/error

[ansible] Invoking "yum" only once while using a loop via squash_actions is deprecated.

nang. 2021. 6. 14. 22:38
반응형
SMALL

Invoking "yum" only once while using a loop via squash_actions is deprecated.

 

최근 버전에서 yum과 with_items 함께 못 씀

 

기존

    yum:

      name"{{ item }}"

      statepresent

    with_items"{{ vars_items }}"

 

바꾼 후

    yum:

      name"{{ vars_items }}"

      statepresent

반응형
LIST