We already install btrfs-tools and xfsprogs with ceph-qa-chef
Doing it here was just causing problems on non-ubuntu
distros and I really see no point for it to have it now.
mkfs_options = config.get('mkfs_options')
mount_options = config.get('mount_options')
if fs == 'btrfs':
- package = 'btrfs-tools'
+ #package = 'btrfs-tools'
if mount_options is None:
mount_options = ['noatime','user_subvol_rm_allowed']
if mkfs_options is None:
'-l', '32768',
'-n', '32768']
if fs == 'xfs':
- package = 'xfsprogs'
+ #package = 'xfsprogs'
if mount_options is None:
mount_options = ['noatime']
if mkfs_options is None: