gpt4 book ai didi

python - 使用 Python 字典编写 Ansible playbook

转载 作者:太空宇宙 更新时间:2023-11-03 19:49:49 24 4
gpt4 key购买 nike

我正在尝试使用 python 脚本执行以下剧本。

playbook = dict(
name = "Enable Site",
hosts = [host],
gather_facts = 'no',
tasks = [
dict(action=dict(
module='find', args=dict(paths="/etc/apache2/sites-enabled")), register='files_found'),
dict(action=dict(
module='shell', args="cd /etc/apache2/sites-enabled && a2dissite *"), register='shell_out', when='files_found.matched > 0'),
dict(action=dict(module='shell', args="a2ensite " + site_name), register='shell_out'),
dict(action=dict(module='service', args="name='apache2' state='reloaded'"), register='shell_out'),
]
)

此剧本主要检查是否启用了任何 apache 站点,如果是,则通过从/etc/apache2/sites-enabled 中删除所有文件来禁用它们。

第二个任务应该在目录 /etc/apache2/sites-enabled 为空时执行。但“何时”条件始终被评估为真。即使我写 when="False"。还尝试了 when="eval(False)"

最佳答案

如果我将您的 playbook 字典转换为常规 Ansible playbook,如下所示:

- name: Enable Site
hosts:
- localhost
gather_facts: no
tasks:
- action:
module: find
args:
paths: /etc/apache2/sites-enabled
register: files_found
- action:
module: shell
args: cd /etc/apache2/sites-enabled && a2dissite *
register: shell_out
when: files_found.matched > 0
- action:
module: shell
args: a2ensite 100-mysite.conf
register: shell_out
- action:
module: service
args: name='apache2' state='reloaded'
register: shell_out

它似乎按预期运行。也就是说,如果我从一个空的 /etc/apache2/sites-enabled 目录开始,我会看到:

PLAY [Enable Site] *******************************************************************

TASK [find] **************************************************************************
ok: [localhost]

TASK [shell] *************************************************************************
skipping: [localhost]

TASK [shell] *************************************************************************
changed: [localhost]

您可以看到它正在跳过第二个 shell 任务。但是,请考虑一下您的剧本的用途:

  • 它检查目录是否为空
  • 如果不是,则会禁用所有内容
  • 它将文件安装到目录中

这意味着每次您运行此剧本时,它都会清空/etc/apache2/sites-enabled,然后重新启用您的site_name 变量。

关于python - 使用 Python 字典编写 Ansible playbook,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59910992/

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