mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
23 lines
651 B
YAML
23 lines
651 B
YAML
- name: update dummy alternative
|
|
alternatives:
|
|
name: dummy
|
|
path: '/usr/bin/dummy{{ item }}'
|
|
link: /usr/bin/dummy
|
|
priority: '{{ 60 + item|int }}'
|
|
register: alternative
|
|
|
|
- name: execute dummy command
|
|
shell: dummy
|
|
register: cmd
|
|
|
|
- name: check if link group is in manual mode
|
|
shell: 'head -n1 {{ alternatives_dir }}/dummy | grep "^manual$"'
|
|
|
|
- name: check expected command was executed
|
|
assert:
|
|
that:
|
|
- 'alternative is changed'
|
|
- 'cmd.stdout == "dummy{{ item }}"'
|
|
|
|
- name: check that alternative has been updated
|
|
command: "grep -Pzq '/bin/dummy{{ item }}\\n{{ 60 + item|int }}' '{{ alternatives_dir }}/dummy'"
|