Skip to content
Snippets Groups Projects
main.yml 267 B
Newer Older
  • Learn to ignore specific revisions
  • jurgenhaas's avatar
    jurgenhaas committed
    ##
    # Ansible file to install PHP
    #
    
    ---
    # file: roles/php/tasks/main.yml
    
    - include: php.yml
      when: role_php_completed is not defined
    
    - name: 'PHP | Remember that this role had been run'
      set_fact: role_php_completed=true
      when: role_php_completed is not defined