有没有与 ansible 等效的 zcat?

有没有与 ansible 等效的 zcat?

zcat在 ansible 中有没有比调用更好的方法shell

- name: "Unpack the local config"
  shell: "zcat /proc/config.gz > /usr/src/linux/.config"
  args:
    creates: "/usr/src/linux/.config"

答案1

将来可能会有一个uncompress模块,但是现在没有:

https://github.com/ansible/ansible-modules-core/issues/3241#issuecomment-240991265

unarchive 模块仅支持存档,不支持压缩文件。文档已得到改进,以使其更加清晰。我们期待有一个新的纯 Python uncompress 模块,它将支持压缩文件和存档,然后 unarchive 模块将被弃用。

相关内容