mirror of
https://github.com/linux-system-roles/network.git
synced 2026-01-23 02:15:17 +00:00
ansible-lint requires that YAML documents begin with a line consisting of `---` Signed-off-by: Rich Megginson <rmeggins@redhat.com>
13 lines
301 B
YAML
13 lines
301 B
YAML
---
|
|
- name: Include the task 'setup_802_1x_server.yml'
|
|
include_tasks: tasks/setup_802_1x_server.yml
|
|
- name: Copy client certs
|
|
copy:
|
|
src: "{{ item }}"
|
|
dest: "/etc/pki/tls/{{ item }}"
|
|
mode: "0644"
|
|
with_items:
|
|
- client.key
|
|
- client.key.nocrypt
|
|
- client.pem
|
|
- cacert.pem
|