From: Sandon Van Ness Date: Sat, 13 Jul 2013 03:56:07 +0000 (-0700) Subject: Remove btrfs-tools and xfsprogs install step. X-Git-Tag: 1.1.0~2042^2~7 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=b9b9dd130e6fe2a24dd1decedac4284d6c7dfd00;p=teuthology.git Remove btrfs-tools and xfsprogs install step. 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. --- diff --git a/teuthology/task/ceph.py b/teuthology/task/ceph.py index efe058426..6af442eee 100644 --- a/teuthology/task/ceph.py +++ b/teuthology/task/ceph.py @@ -546,7 +546,7 @@ def cluster(ctx, config): 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: @@ -554,7 +554,7 @@ def cluster(ctx, config): '-l', '32768', '-n', '32768'] if fs == 'xfs': - package = 'xfsprogs' + #package = 'xfsprogs' if mount_options is None: mount_options = ['noatime'] if mkfs_options is None: