Ansible playbook命令在安装phantomjs时出错

时间:2016-04-25 10:51:52

标签: phantomjs ansible ansible-playbook

我有一个ansible playbook,里面有多个命令。在下面的命令中,一个给了我错误。

命令:“npm install phantomjs chdir = projects / phoenix-switch”

错误是:

enter image description here

1 个答案:

答案 0 :(得分:0)

检查系统PATH并检查ansible PATH,因为存在差异。 试试吧:

- shell: echo $PATH
  register: check

- debug: msg="{{check}} and {{ ansible_env.PATH }}"

ansible可能在ansible_env.PATH中没有看到npm。