🚨 roles: Fix remaining fqcn linter warnings

fqcn[action-core]: Use FQCN for builtin module actions (service).
    roles/apache_letsencrypt/handlers/main.yml:3 Use `ansible.builtin.service` or `ansible.legacy.service` instead.

    fqcn[action-core]: Use FQCN for builtin module actions (apt).
    roles/dd24_dyndns_cron/tasks/main.yml:2 Use `ansible.builtin.apt` or `ansible.legacy.apt` instead.

    fqcn[action-core]: Use FQCN for builtin module actions (apt).
    roles/desec_dyndns_cron/tasks/main.yml:2 Use `ansible.builtin.apt` or `ansible.legacy.apt` instead.

    fqcn[action-core]: Use FQCN for builtin module actions (command).
    roles/nfs_host/handlers/main.yml:2 Use `ansible.builtin.command` or `ansible.legacy.command` instead.
This commit is contained in:
Alexander Dahl 2025-03-09 18:19:01 +01:00
parent bec6fc20b7
commit 23bc6d7b69
4 changed files with 4 additions and 4 deletions
roles
apache_letsencrypt/handlers
dd24_dyndns_cron/tasks
desec_dyndns_cron/tasks
nfs_host/handlers

View file

@ -1,6 +1,6 @@
# Handlers for role apache_letsencrypt
---
- name: Restart apache2
service:
ansible.builtin.service:
name: apache2
state: restarted

View file

@ -1,6 +1,6 @@
---
- name: Make sure cron and curl are installed
apt:
ansible.builtin.apt:
name:
- cron
- curl

View file

@ -1,6 +1,6 @@
---
- name: Make sure cron and curl are installed
apt:
ansible.builtin.apt:
name:
- cron
- curl

View file

@ -1,3 +1,3 @@
---
- name: Reload nfs
command: 'exportfs -ra'
ansible.builtin.command: 'exportfs -ra'