Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
shutdown.yml 411 B
Newer Older
  • Learn to ignore specific revisions
  • ---
    - hosts: "{{ host_list }}"
      remote_user: root
    
      tasks:
    
        - name: SHUTDOWN | in 5 min
          when: inventory_hostname not in groups.production
    
          community.general.shutdown:
    
            delay: 300
    
        - name: SHUTDOWN | not allowed
          when: inventory_hostname in groups.production
          ansible.builtin.debug:
            msg: "«{{ ansible_hostname }}» belongs to production group: shutdown not allowed"