2020-03-09 10:11:07 +01:00
|
|
|
- name: update dummy alternative
|
|
|
|
alternatives:
|
|
|
|
name: dummy
|
|
|
|
path: '/usr/bin/dummy{{ item }}'
|
|
|
|
link: /usr/bin/dummy
|
2021-07-25 13:53:38 +02:00
|
|
|
priority: '{{ 60 + item|int }}'
|
2020-03-09 10:11:07 +01:00
|
|
|
register: alternative
|
|
|
|
|
|
|
|
- name: execute dummy command
|
|
|
|
shell: dummy
|
|
|
|
register: cmd
|
|
|
|
|
|
|
|
- name: check if link group is in manual mode
|
2021-07-25 13:53:38 +02:00
|
|
|
shell: 'head -n1 {{ alternatives_dir }}/dummy | grep "^manual$"'
|
2020-03-09 10:11:07 +01:00
|
|
|
|
|
|
|
- name: check expected command was executed
|
|
|
|
assert:
|
|
|
|
that:
|
|
|
|
- 'alternative is changed'
|
2021-07-25 13:53:38 +02:00
|
|
|
- 'cmd.stdout == "dummy{{ item }}"'
|
2020-03-09 10:11:07 +01:00
|
|
|
|
|
|
|
- name: check that alternative has been updated
|
|
|
|
command: "grep -Pzq '/bin/dummy{{ item }}\\n{{ 60 + item|int }}' '{{ alternatives_dir }}/dummy'"
|
2022-06-06 10:33:39 +02:00
|
|
|
|
|
|
|
- name: update dummy priority
|
|
|
|
alternatives:
|
|
|
|
name: dummy
|
|
|
|
path: '/usr/bin/dummy{{ item }}'
|
|
|
|
link: /usr/bin/dummy
|
|
|
|
priority: '{{ 70 + item|int }}'
|
|
|
|
register: alternative
|
|
|
|
|
|
|
|
- name: check that alternative priority has been updated
|
2022-06-13 21:40:02 +02:00
|
|
|
command: "grep -Pzq '/bin/dummy{{ item }}\\n{{ 70 + item|int }}' '{{ alternatives_dir }}/dummy'"
|
|
|
|
|
|
|
|
- name: no change without priority
|
|
|
|
alternatives:
|
|
|
|
name: dummy
|
|
|
|
path: '/usr/bin/dummy{{ item }}'
|
|
|
|
link: /usr/bin/dummy
|
|
|
|
register: alternative
|
|
|
|
|
|
|
|
- name: check no change was triggered without priority
|
|
|
|
assert:
|
|
|
|
that:
|
|
|
|
- 'alternative is not changed'
|
|
|
|
|
|
|
|
- name: check that alternative priority has not been changed
|
|
|
|
command: "grep -Pzq '/bin/dummy{{ item }}\\n{{ 70 + item|int }}' '{{ alternatives_dir }}/dummy'"
|