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.

27 lines
731 B

  1. ---
  2. # Tâches pour Debian 9 ou supérieur
  3. - import_tasks: debianbase.yml
  4. when: ansible_os_family == 'Debian' and ansible_distribution_major_version | int >= 9
  5. # Tâches pour CentOS 7 ou supérieur
  6. - import_tasks: centosbase.yml
  7. when: ansible_os_family == 'RedHat' and ansible_distribution_major_version | int >= 7
  8. # Module TIMEZONE: http://docs.ansible.com/ansible/latest/timezone_module.html
  9. - name: Configuration de la timezone
  10. timezone:
  11. name: "{{ timezone }}"
  12. - name: Déploiement du motd
  13. template:
  14. src: motd.j2
  15. dest: /etc/motd
  16. tags: motd
  17. notify: restart ssh
  18. - name: Déploiement d'une tâche cron
  19. cron:
  20. name: "Tache cron de test"
  21. minute: "12"
  22. hour: "12"
  23. job: "echo 'Hello World'"