工作目录设置
-
ansible 定义工作目录_Ansible
在Ansible中,可以使用working_dir参数定义工作目录。- name: Copy file to remote host., copy: src=/path/to/local/file dest=/path/to/remote/dir owner=user group=group mode=0644 working_dir=/path/to/remote/dir。
-
ansible-playbook 定义工作目录_工作目录
在ansible-playbook中,可以使用working_dir参数来定义工作目录。`- name: Example playbook tasks - hosts: webservers become: yes vars: some_directory: /srv/http tasks: - name: Ensure nginx is at the latest version command: yum update nginx notify: Restart nginx changed_when: false