Files @ 14eb78a4f466
Branch filter:

Location: majic-ansible-roles/roles/preseed/molecule/default/prepare.yml - annotation

branko
MAR-129: Updated php_website role for Ansible 2.5.x and new Molecule:

- Include global linting configuration file in tests.
- Fixed linting issues.
- Fix deprecation warnings from Ansible (for apt module and
state=installed).
- Updated how the hosts are being referenced within tests.
---

- name: Prepare
  hosts: all
  gather_facts: False
  tasks:
    - name: Install python for Ansible
      raw: test -e /usr/bin/python || (apt -y update && apt install -y python-minimal)
      become: True
      changed_when: False

- hosts: parameters-mandatory
  become: yes
  tasks:

    # @TODO: This is a hack because inventory_dir used for
    # preseed_directory comes from _host_.
    - name: Set-up inventory directory matching location where molecule is running itself
      file:
        path: "{{ inventory_dir }}"
        state: directory
        owner: vagrant
        group: vagrant
        mode: 0700