我有一本有两个任务的剧本。第一个使用yum模块更新软件包。第二个创建目录。我不希望第二项任务在更新完成之前发生。但是,由于yum update模块没有任何返回值,我如何告诉下一个任务仅在更新完成后才能运行?
- name: run yum update -y using yum module
yum:
name: "*"
state: latest
- name: Create a directory only after the update has completed
file:
path: /home/ec2-user/updater
state: directory
when: ??????
非常感谢您的帮助