Skip to content

Commit

Permalink
Cleanup non-inclusive words
Browse files Browse the repository at this point in the history
CHANGELOG.md - removed non-inclusive words.
tests/tasks/setup_ipa.yml - Cleanup non-inclusive words.
                          - Fix ansible-lint warnings.
  • Loading branch information
nhosoi committed Dec 16, 2022
1 parent eb842ae commit add1323
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ correct ones).

### Other Changes

- changelog_to_tag action - support other than "master" for the main branch name (#129)
- changelog_to_tag action - github action ansible test improvements

[1.1.6] - 2022-07-19
--------------------
Expand Down Expand Up @@ -183,14 +183,14 @@ must be a `string` value like `"2.9"`, not a `float` value like `2.9`.

### Bug fixes

- Fix some ansible-test sanity errors; suppressing the rest
- Fix some ansible-test errors; suppressing the rest
- Fix ansible-test errors
- Add a note to each module Doc to indicate it is private

### Other Changes

- Remove python-26 environment from tox testing
- update to tox-lsr 2.4.0 - add support for ansible-test sanity with docker
- update to tox-lsr 2.4.0 - add support for ansible-test with docker
- CI: Add support for RHEL-9

[1.0.2] - 2021-02-12
Expand Down
5 changes: 4 additions & 1 deletion tests/tasks/setup_ipa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
when: __is_beaker_env

- name: Clone ansible-freeipa repo
# noqa git-latest
git:
repo: https://github.com/freeipa/ansible-freeipa
version: master
dest: /tmp/freeipa-repo
delegate_to: 127.0.0.1
become: false
Expand Down Expand Up @@ -53,6 +53,7 @@
rescue:
- name: FAILURE - check entropy
command: cat /proc/sys/kernel/random/entropy_avail
changed_when: false
- name: FAILURE - get logs for debugging
shell: |-
set -euo pipefail
Expand All @@ -65,6 +66,7 @@
chmod '0644' /tmp/ipalogs.tgz
args:
warn: false # suppress 'unarchive' warning
changed_when: false
- name: FAILURE - grab archive
fetch:
src: /tmp/ipalogs.tgz
Expand All @@ -79,6 +81,7 @@
args:
warn: false # suppress 'unarchive' warning
delegate_to: 127.0.0.1
changed_when: false
- name: failed
fail:
msg: failed
Expand Down

0 comments on commit add1323

Please sign in to comment.