gpt4 book ai didi

linux - 使用 Ansible 删除属性

转载 作者:太空狗 更新时间:2023-10-29 12:40:37 24 4
gpt4 key购买 nike

我可以使用以下 Ansible 代码添加属性:但是不知道如何删除属性?(我尝试添加不带引号的“-”并返回错误。

    - file:
path: /tmp/null_p
owner: foo
group: bar
mode: 0500
attr: i

Above 向文件添加不可变属性。

如果我从命令行执行此操作,它会是

    chattr +i /tmp/null_p

删除我会

    chattr -i /tmp?null_p

我想通过 attr 而不是 ansible 中的命令来做到这一点。

我已经为此引用了 ansible 文档,但是没有属性示例 http://docs.ansible.com/ansible/latest/file_module.html

ansible 版本:2.3.0.0 python 版本:2.7.5

最佳答案

使用 Ansible 在 RHEL7/CENTOS 中删除文件的不可变属性:

  - name: Remove immutable.
become: yes
file:
path: /etc/resolv.conf
attributes: '-i'

关于linux - 使用 Ansible 删除属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45722692/

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