Hi there,
is there any way to run a local_action task only once?
I tried the following but it doesn’t work:
`
- name: gather public keys to be installed
local_action: shell cat public-keys/*.pub
run_once: true
changed_when: False
sudo: False
register: keys
`
Is this possible at all?
Cheers
Luka