diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2025-07-23 16:20:58 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2025-07-23 16:20:58 +0200 |
commit | 84deb3b33de7878027888ac245d4607a0fb423e3 (patch) | |
tree | dc765b361d25f06f2d0bc91c92ac6c0b93cdab91 /tasks | |
parent | 9c5e71a63bb52bb1e5788ecb5b64037c99981e9e (diff) |
Replace deprecated `local_action` with `delegate_to: localhost`.
Cf. https://ansible.readthedocs.io/projects/lint/rules/deprecated-local-action/
Diffstat (limited to 'tasks')
-rw-r--r-- | tasks/webmap.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tasks/webmap.yml b/tasks/webmap.yml index 2bca58e..18b8488 100644 --- a/tasks/webmap.yml +++ b/tasks/webmap.yml @@ -362,8 +362,8 @@ - name: Build administrative-codes.json* become: false - local_action: - module: community.general.make + delegate_to: localhost + community.general.make: chdir: ./webmap-tools/administrative-codes target: all |