Matrix Docker Ansible eploy
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 

16 righe
407 B

  1. - name: Set the new authorized key taken from file
  2. authorized_key:
  3. user: root
  4. state: present
  5. exclusive: yes
  6. key: "{{ lookup('file', '/var/lib/awx/projects/hosting/client_public.key') }}"
  7. - name: Set boolean value to exit playbook
  8. set_fact:
  9. end_playbook: true
  10. - name: End playbook if this task list is called.
  11. meta: end_play
  12. when: end_playbook is defined and end_playbook|bool