Difference between revisions of "Ansible File Commands"
Jump to navigation
Jump to search
Line 26: | Line 26: | ||
group: root | group: root | ||
mode: 0666 | mode: 0666 | ||
=Run Shell Script on remote server= | |||
--- | |||
- name: run shell script | |||
hosts: all | |||
tasks: | |||
- name: run shell script | |||
shell: "~/cfile.sh" |
Revision as of 20:10, 22 June 2022
Copy File to remote servers
--- - name: copy file from local to remote hosts: all tasks: - name: copy file copy: src: ~/photo.jpg dest: ~/ owner: root group: root mode: 0777
Change Permission of file on remote server
--- - name: change permission on remote hosts: all tasks: - name: change permission file: path: ~/photo.jpg owner: root group: root mode: 0666
Run Shell Script on remote server
--- - name: run shell script hosts: all tasks: - name: run shell script shell: "~/cfile.sh"