Sto usando Ansible di distribuire il mio progetto e ho cercando di verificare se è installato un pacchetto specificato, ma ho un problema con esso compito, ecco il compito:Il modulo di comando Ansible dice che '|' è il carattere illegale
- name: Check if python-apt is installed
command: dpkg -l | grep python-apt
register: python_apt_installed
ignore_errors: True
Ed ecco il problema:
$ ansible-playbook -i hosts idempotent.yml
PLAY [lxc-host] ***************************************************************
GATHERING FACTS ***************************************************************
ok: [10.0.3.240]
TASK: [idempotent | Check if python-apt is installed] *************************
failed: [10.0.3.240] => {"changed": true, "cmd": ["dpkg", "-l", "|", "grep", "python-apt"], "delta": "0:00:00.015524", "end": "2014-07-10 14:41:35.207971", "rc": 2, "start": "2014-07-10 14:41:35.192447"}
stderr: dpkg-query: error: package name in specifier '|' is illegal: must start with an alphanumeric character
...ignoring
PLAY RECAP ********************************************************************
10.0.3.240 : ok=2 changed=1 unreachable=0 failed=0
Perché è illegale questo personaggio '|'.
Btw, secondo https://github.com/ansible/ansible/pull/4617 'python-apt' dovrebbe essere installato automaticamente quando si utilizza' apt 'mo dule, quindi non dovresti aver bisogno di riavviarlo manualmente. – Mxx
usa il modulo 'shell' se vuoi usare' pipe' – deepdive