Existe uma maneira melhor de fazer zcat
no ansible do que invocar shell
?
- name: "Unpack the local config"
shell: "zcat /proc/config.gz > /usr/src/linux/.config"
args:
creates: "/usr/src/linux/.config"
Existe uma maneira melhor de fazer zcat
no ansible do que invocar shell
?
- name: "Unpack the local config"
shell: "zcat /proc/config.gz > /usr/src/linux/.config"
args:
creates: "/usr/src/linux/.config"
No futuro pode haver um
uncompress
módulo, mas hoje não:https://github.com/ansible/ansible-modules-core/issues/3241#issuecomment-240991265