zcat
在 ansible 中有比调用更好的方法shell
吗?
- name: "Unpack the local config"
shell: "zcat /proc/config.gz > /usr/src/linux/.config"
args:
creates: "/usr/src/linux/.config"
zcat
在 ansible 中有比调用更好的方法shell
吗?
- name: "Unpack the local config"
shell: "zcat /proc/config.gz > /usr/src/linux/.config"
args:
creates: "/usr/src/linux/.config"
将来可能会有一个
uncompress
模块,但今天没有:https://github.com/ansible/ansible-modules-core/issues/3241#issuecomment-240991265