Ansible Playbook Snippets/Scripts
Delete File
Delete Local - name: Delete uploaded file at ansible centralize data location file: path...
Upload File to Remote Directory
- name: Upload program file to target machine win_copy: src: "/tmp/setup.exe" dest: ...
Set Fail Msg
Set fail message when directory does not exist - name: Check if src directory exist in target ma...
Reboot Windows Server
- name: Reboot server win_reboot: connect_timeout: 1200 reboot_timeout: 600 # Gives ...