🚨 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:
parent
bec6fc20b7
commit
23bc6d7b69
4 changed files with 4 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
|||
# Handlers for role apache_letsencrypt
|
||||
---
|
||||
- name: Restart apache2
|
||||
service:
|
||||
ansible.builtin.service:
|
||||
name: apache2
|
||||
state: restarted
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
- name: Make sure cron and curl are installed
|
||||
apt:
|
||||
ansible.builtin.apt:
|
||||
name:
|
||||
- cron
|
||||
- curl
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
- name: Make sure cron and curl are installed
|
||||
apt:
|
||||
ansible.builtin.apt:
|
||||
name:
|
||||
- cron
|
||||
- curl
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
---
|
||||
- name: Reload nfs
|
||||
command: 'exportfs -ra'
|
||||
ansible.builtin.command: 'exportfs -ra'
|
||||
|
|
Loading…
Add table
Reference in a new issue