Browse Source

Added write to file

main
Mohammad Akbari 4 years ago
parent
commit
aff9eba4c2
  1. 4
      db.yml

4
db.yml

@ -1,6 +1,6 @@
- name: Initialize db servers - name: Initialize db servers
become: yes become: yes
hosts: webservers
hosts: databases
tasks: tasks:
- name: ensure mysql is at the latest version - name: ensure mysql is at the latest version
apt: apt:
@ -8,3 +8,5 @@
dpkg_options: 'force-confnew,force-confdef' dpkg_options: 'force-confnew,force-confdef'
name: mysql name: mysql
state: latest state: latest
- name: Execute the command in remote shell; stdout goes to the specified file on the remote
ansible.builtin.shell: $(date)." database" >> somelog.txt
Loading…
Cancel
Save