]> git-server-git.apps.pok.os.sepia.ceph.com Git - teuthology.git/commitdiff
Remove btrfs-tools and xfsprogs install step.
authorSandon Van Ness <sandon@inktank.com>
Sat, 13 Jul 2013 03:56:07 +0000 (20:56 -0700)
committerSandon Van Ness <sandon@inktank.com>
Sat, 13 Jul 2013 03:56:07 +0000 (20:56 -0700)
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.

teuthology/task/ceph.py

index efe058426ee9b419855acc1bc5a0f593fcaeed6e..6af442eee1ef6226313358ca151aba26817ce044 100644 (file)
@@ -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: