0

AWX の ansible-playbook から nodejs スクリプトを実行しようとしています。コマンドは通常の cli では正常に動作しますが、プレイブックから実行すると失敗します。

可能なバージョン:

ansible 2.5.1
  config file = /etc/ansible/ansible.cfg
  configured module search path = [u'/root/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules']
  ansible python module location = /usr/lib/python2.7/dist-packages/ansible
  executable location = /usr/bin/ansible
  python version = 2.7.15+ (default, Nov 27 2018, 23:36:35) [GCC 7.3.0]

プレイブックの最新のトレイルは次のとおりです。

---
- name: create a new domain in Digital Ocean.
  hosts: localhost
  connection: local
  tasks:
  - name: create a new domain in Digital Ocean.
    shell: "/var/lib/awx/projects/MY_USERNAME/modules/new-domain.js --name={{client_url|quote}} --ip={{server_ip|quote}}"
    args:
      executable: /usr/bin/node

ありがとうございました

4

1 に答える 1