Re: [ansible-project] Options in Mount module for fstab

2021-01-14 Thread Josue Arroyo
Noted. Thank you for the help guys! El miércoles, 13 de enero de 2021, 16:07:00 (UTC-6), Jean-Yves LENHOF escribió: > > Hi, > > For xfs file system, fsck is not necessary. > > For the record on the man page of fsck.xfs "fsck.xfs - do nothing, > successfully" > > On rare occasion you could need x

Re: [ansible-project] Options in Mount module for fstab

2021-01-13 Thread Jean-Yves LENHOF
Hi, For xfs file system, fsck is not necessary. For the record on the man page of fsck.xfs "fsck.xfs - do nothing, successfully" On rare occasion you could need xfs_repair ! Regards, JYL Le 13/01/2021 à 22:28, Matt Martz a écrit : Those are the `dump` and `passno` arguments for the modul

Re: [ansible-project] Options in Mount module for fstab

2021-01-13 Thread Matt Martz
Those are the `dump` and `passno` arguments for the module. On Wed, Jan 13, 2021 at 3:26 PM 1793...@gmail.com <1793j...@gmail.com> wrote: > > Hello there, > > I have the following task: > > - name: Mount /dev/testvg/testlv > mount: > path: /test > src: /dev/testvg/testlv > fstype: xfs > opts: def

[ansible-project] Options in Mount module for fstab

2021-01-13 Thread 1793...@gmail.com
Hello there, I have the following task: - name: Mount /dev/testvg/testlv mount: path: /test src: /dev/testvg/testlv fstype: xfs opts: defaults state: present I'm using the mount module. I'm trying to achieve inserting the following line into fstab: /dev/testvg/testlv /test xfs defaults 1 2 H