本文介绍了检查文件是否存在并创建符号链接的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想做这样的事情:
如果文件 A 存在或没有符号链接 B,我想创建一个符号链接 B -> A.
if file A exists or there is no symlink B, I want to create a symlink B -> A.
现在我有:
B:
file:
- symlink:
- target: A
- exists:
- name: A
但这很糟糕,它没有检查我想要的东西.我怎样才能在盐中实现这个简单的事情?
But this is bad it checks not the thing I want. How can I achive this simple thing in salt ?
推荐答案
我们可以使用file.directory_exists
{% if not salt['file.directory_exists' ]('/symlink/path/A') %}
symlink:
file.symlink:
- name: /path/to/A
- target: /symlink/path/A
{% endif %}
这篇关于检查文件是否存在并创建符号链接的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!