Files @ abe3f4e5e6a6
Branch filter:

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

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

- Include top-level linting configuration in test configuration.
- Fixed linting errors.
- Moved test playbook variables into group_vars.
- Updated how hosts are referenced in 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: true
  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