Fixes the following ansible-lint warning: yaml[new-line-at-end-of-file]: No new line character at the end of file group-k3s.yml:9
9 lines
170 B
YAML
9 lines
170 B
YAML
---
|
|
- hosts: k3s
|
|
become: true
|
|
|
|
tasks:
|
|
- name: Ensure nfs-common is installed on k3s VMs
|
|
ansible.builtin.apt:
|
|
pkg: nfs-common
|
|
state: present
|