summaryrefslogtreecommitdiffstats
path: root/storage/formats/fs.py
diff options
context:
space:
mode:
authorJosef Bacik <josef@redhat.com>2009-12-04 10:42:44 -0500
committerChris Lumens <clumens@redhat.com>2009-12-09 23:30:24 -0500
commit30e96b4857422948d1586c6ed69e5f8f67960f05 (patch)
treecc9e3e7fc74b960dbe0c5b915462b2c3e9eb0e4f /storage/formats/fs.py
parent40ee1b777c953141fab93eba53ef8c8732ae0098 (diff)
downloadanaconda-30e96b4857422948d1586c6ed69e5f8f67960f05.tar.gz
anaconda-30e96b4857422948d1586c6ed69e5f8f67960f05.tar.xz
anaconda-30e96b4857422948d1586c6ed69e5f8f67960f05.zip
Change btrfs command line option
In F11 and F12 the command line option to enable btrfs during the installer was "icantbelieveitsnotbtr". Unfortunately I can't spell believe the first time every time, and btrfs has come quite a ways since F11 and is stable enough to start being tested on a larger scale. So change the command line option to "btrfs" in keeping with tradition and to make it a bit simpler for those who want to take it for a test spin in F13. Thanks, Signed-off-by: Josef Bacik <josef@redhat.com>
Diffstat (limited to 'storage/formats/fs.py')
-rw-r--r--storage/formats/fs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/formats/fs.py b/storage/formats/fs.py
index 587edecc7..7c861a438 100644
--- a/storage/formats/fs.py
+++ b/storage/formats/fs.py
@@ -1080,7 +1080,7 @@ class BTRFS(FS):
def supported(self):
""" Is this filesystem a supported type? """
supported = self._supported
- if flags.cmdline.has_key("icantbelieveitsnotbtr"):
+ if flags.cmdline.has_key("btrfs"):
supported = self.utilsAvailable
return supported