You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
400 B

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. - name: Initialize web servers
  2. become: yes
  3. hosts: webservers
  4. tasks:
  5. - name: ensure apache is at the latest version
  6. apt:
  7. update_cache: y
  8. dpkg_options: 'force-confnew,force-confdef'
  9. name: httpd
  10. state: latest
  11. - name: Execute the command in remote shell; stdout goes to the specified file on the remote
  12. ansible.builtin.shell: $(date)." app" >> somelog.txt