gpt4 book ai didi

centos - 如何使这个 ansible chkconfig 任务幂等?

转载 作者:太空宇宙 更新时间:2023-11-03 17:13:02 26 4
gpt4 key购买 nike

我的 playbook 中有一个像这样的 ansible 任务要针对 centos 服务器运行:

   - name: Enable services for automatic start
action: command /sbin/chkconfig {{ item }} on
with_items:
- nginx
- postgresql

这个任务在我每次运行时都会改变。如何让这个任务通过幂等性测试?

最佳答案

最好的选择是使用带有服务模块的enabled=yes:

- name: Enable services for automatic start
service:
name: "{{ item }}"
enabled: yes
with_items:
- nginx
- postgresql

希望对你有帮助。

关于centos - 如何使这个 ansible chkconfig 任务幂等?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37625856/

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