Ansible playbook 用于上传和执行 Python 脚本

Ansible playbook 用于上传和执行 Python 脚本

我的剧本如下:

- hosts : mygroup
  user : user
  sudo : yes
  tasks :
  - name : Copy script
    copy : 'src=/home/user/Scripts/logchecker.py dest=/opt/root2/logchecker.py owner=root group=root mode=755'
  - name : Execute script
    command : '/usr/bin/python /opt/root2/logchecker.py'

文件上传正常,但执行失败。尽管我能够直接在服务器上执行脚本,没有任何问题。我做错了什么吗?

答案1

我使用了类似的剧本,其工作方式与预期一致:

# playbook.yml
---
- hosts: ${target}
  sudo: yes

  tasks:
  - name: Copy file
    copy: src=../files/test.py dest=/opt/test.py owner=howardsandford group=admin mode=755

  - name: Execute script
    command: /opt/test.py

和 test.py:

#!/usr/bin/python

# write to a file
f = open('/tmp/test_from_python','w')
f.write('hi there\n')

运行剧本:

ansible-playbook playbook.yml --extra-vars "target=the_host_to_run_script_on"

演出:

PLAY [the_host_to_run_script_on] ***************************************************************

GATHERING FACTS ***************************************************************
ok: [the_host_to_run_script_on]

TASK: [Copy file] *************************************************************
changed: [the_host_to_run_script_on]

TASK: [Execute script] ********************************************************
changed: [the_host_to_run_script_on]

PLAY RECAP ********************************************************************
the_host_to_run_script_on  : ok=3    changed=2    unreachable=0    failed=0

在远程主机上:

$ cat /tmp/test_from_python
hi there

我们的设置之间存在一些差异:

  • 我没有在复制和命令参数周围使用单引号
  • shebang 设置 python 解释器,而不是从命令行指定 /usr/bin/python
  • 我将脚本的所有者设置为我自己的用户名和 sudoers 中的主要组,而不是 root

希望这可以为您指明差异所在。

答案2

您只需要下面的插件脚本即可使用

---
- hosts: ${target}
  become: true
  tasks:
  - name: Copy and Execute the script
    script: /opt/test.py

相关内容