Ian Wienand 6d23d20f2f linters: add names to blocks
This is preparation for a later version of ansbile-lint, which finds
missing names on blocks.  This seems a reasonable rule, and the
Ansible manual says [1]

  Names for blocks have been available since Ansible 2.3. We recommend
  using names in all tasks, within blocks or elsewhere, for better
  visibility into the tasks being executed when you run the playbook.

This simply adds a name tag for blocks that are missing it.  This
should have no operational change, but allows us to update the linter
in a follow-on change.

[1] https://docs.ansible.com/ansible/latest/user_guide/playbooks_blocks.html

Change-Id: I92ed4616775650aced352bc9088a07e919f1a25f
2022-07-27 17:13:39 +10:00

35 lines
885 B
YAML

- name: Make sure the role is run on Fedora
fail:
msg: "This role supports Fedora only"
when: "ansible_distribution != 'Fedora'"
- name: Check stack version
command: stack --version
failed_when: false
register: _stack_version
- name: Install stack
block:
# This package is somehow missing from the requirements of the
# published packaged copr repo. See
# https://github.com/commercialhaskell/stack/issues/5388
- name: Preinstall gmp-devel
package:
name: gmp-devel
state: present
become: true
- name: Install stack
package:
name: stack
state: present
become: true
- name: Upgrade stack
command: stack upgrade
become: true
- name: Setup stack LTS
command: "stack {% if lts_version %}--resolver {{ lts_version }}{% endif %} setup"
when: _stack_version.rc != 0