gpt4 book ai didi

ansible - 在ansible中自动创建不存在的目录的简单方法是什么

转载 作者:行者123 更新时间:2023-12-03 04:48:07 27 4
gpt4 key购买 nike

在我的 Ansible 剧本中,很多时候我需要创建一个文件:

- name: Copy file
template:
src: code.conf.j2
dest: "{{ project_root }}/conf/code.conf"

很多时候 conf 目录不存在。然后我必须创建另一个任务来首先创建该目录。

如果某个选项不存在,是否有任何简单的方法可以自动创建目录?

最佳答案

目前,这是唯一的方法:

- name: ensures {{ project_root }}/conf dir exists
file:
path: "{{ project_root }}/conf"
state: directory

- name: Copy file
template:
src: code.conf.j2
dest: "{{ project_root }}/conf/code.conf"

关于ansible - 在ansible中自动创建不存在的目录的简单方法是什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22472168/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com