Let me try to be clearer :
ansible localhost -m setup
Is not showing any block devices :
"ansible_devices": {},
This host is using /dev/nbd0 as its root device.
Now I was wondering, for my particular needs, how I could fill this gathered facts with my block device, for instance I'd like to fake a /dev/sda which would be a loop device. The issue is not about how to create this block device, but how to get it gathered by Ansible?
Thank you for any suggestion.