Existe um equivalente zcat para ansible?

2

Existe uma maneira mais agradável de fazer zcat em 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"
    
por Kit Sunde 10.12.2016 / 12:43

1 resposta

2

No futuro, pode haver um módulo uncompress , mas hoje não:

link

The unarchive module only supports archives, not compressed files. The documentation was improved to make that more clear. We anticipate a new pure-python uncompress module that will support compressed files as well as archives, which would then deprecate the unarchive module.

    
por 10.12.2016 / 13:22

Tags