Files @ b34547147a36
Branch filter:

Location: majic-ansible-roles/roles/backup_client/molecule/default/molecule.yml

branko
MAR-193: Fix some linting errors reported by shellcheck.
---

dependency: {}

driver:
  name: vagrant
  provider:
    name: virtualbox

lint:
  name: yamllint
  options:
    config-file: ../../.yamllint.yml

# NOTE: Hostnames are shortened because default values for backup
# usernames are calculated by appending hostname to the "bak-" string,
# which will easily exceed the maximum username length of 32. Yay
# stupid legacy design decisions!
platforms:
  - name: backup-server
    box: debian/bullseye64
    memory: 512
    cpus: 1
    provider_raw_config_args:
      - "customize ['modifyvm', :id, '--paravirtprovider', 'minimal']"
    interfaces:
      - auto_config: true
        ip: 192.168.56.10
        network_name: private_network
        type: static

  - name: param-mandatory-buster
    groups:
      - parameters-mandatory
    box: debian/contrib-buster64
    memory: 256
    cpus: 1
    provider_raw_config_args:
      - "customize ['modifyvm', :id, '--paravirtprovider', 'minimal']"
    interfaces:
      - auto_config: true
        ip: 192.168.56.20
        network_name: private_network
        type: static

  - name: param-optional-buster
    groups:
      - parameters-optional
    box: debian/contrib-buster64
    memory: 256
    cpus: 1
    provider_raw_config_args:
      - "customize ['modifyvm', :id, '--paravirtprovider', 'minimal']"
    interfaces:
      - auto_config: true
        ip: 192.168.56.21
        network_name: private_network
        type: static

  - name: param-mandatory-bullseye
    groups:
      - parameters-mandatory
    box: debian/bullseye64
    memory: 256
    cpus: 1
    provider_raw_config_args:
      - "customize ['modifyvm', :id, '--paravirtprovider', 'minimal']"
    interfaces:
      - auto_config: true
        ip: 192.168.56.30
        network_name: private_network
        type: static

  - name: param-optional-bullseye
    groups:
      - parameters-optional
    box: debian/bullseye64
    memory: 256
    cpus: 1
    provider_raw_config_args:
      - "customize ['modifyvm', :id, '--paravirtprovider', 'minimal']"
    interfaces:
      - auto_config: true
        ip: 192.168.56.31
        network_name: private_network
        type: static

provisioner:
  name: ansible
  config_options:
    defaults:
      force_valid_group_names: "ignore"
      interpreter_python: "/usr/bin/python3"
    ssh_connection:
      pipelining: "True"
  lint:
    name: ansible-lint

scenario:
  name: default

verifier:
  name: testinfra
  lint:
    name: flake8