Ansible mount no fsck options?

I'm using the standard Ansible mount module to update entries in /etc/fstab however there appears to be no option for columns 5 and 6 and Ansible always sets '0 0'.

Example: /home is '1 2' as default however after running mount to change some options it's '0 0' and as such would not be checked at boot.

Is this intended or am I missing something?

Thanks

Checkout the dump and passno arguments in the module. http://docs.ansible.com/ansible/mount_module.html

Great! Honestly no idea how i missed those options - must have read the doc 10x but didn’t make the obvious connection.

Many thanks!