On Fri, 11 Nov 2022 at 17:35, dulhaver via Ansible Project < [email protected]> wrote:
> here in plain text > > I am getting > > fatal: [VM-414001-0264.step.zrz.dvz.cn-mv.de]: FAILED! => > msg: 'failure writing module data to temporary file for transfer: > [Errno 28] No space left on device > > on "Gathering Facts" of a playbook execution, eventhough I have setup > ansible to use /tmp/.ansible/tmp and there should be space available as far > as I can tell > > stepuser@vm-414001-0264:~> df -h /tmp > Filesystem Size Used Avail Use% Mounted on > /dev/mapper/vgsys-root 7,0G 2,2G 4,9G 32% / > > what am I doing wrong? > You're only looking at the number of free space (i.e. blocks). But (as I stated earlier) there are also inodes which the filesystem can run out of. Try: df -i -- You received this message because you are subscribed to the Google Groups "Ansible Project" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/ansible-project/CAF8BbLY2PF8zSuJ726_WRCVMtjD6Aee9pGTVbtvcz1oU-wGCFg%40mail.gmail.com.
