Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/playbooks/run_tasks.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# SPDX-License-Identifier: BSD-3-Clause
---
- name: Run the tasklist {{ task }}
- name: Run the tasklist
hosts: all
tasks:
- name: Include the task '{{ task }}'
Expand Down
10 changes: 10 additions & 0 deletions tests/playbooks/tests_802_1x.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,16 @@
- name: Update ca trust
command: update-ca-trust
changed_when: false
- name: Workaround for EL10 CA trust location
shell:
cmd: |
set -euxo pipefail
exec 1>&2
if [ ! -f /etc/pki/tls/cert.pem ]; then
ln -s /etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem /etc/pki/tls/cert.pem
fi
executable: /bin/bash
changed_when: false
- name: Import network role
import_role:
name: linux-system-roles.network
Expand Down
Loading