X7ROOT File Manager
Current Path:
/usr/lib/python2.7/site-packages/blivet/formats
usr
/
lib
/
python2.7
/
site-packages
/
blivet
/
formats
/
📁
..
📄
__init__.py
(17.56 KB)
📄
__init__.pyc
(19.68 KB)
📄
__init__.pyo
(19.68 KB)
📄
biosboot.py
(2.14 KB)
📄
biosboot.pyc
(1.83 KB)
📄
biosboot.pyo
(1.83 KB)
📄
disklabel.py
(18.98 KB)
📄
disklabel.pyc
(17.31 KB)
📄
disklabel.pyo
(17.31 KB)
📄
dmraid.py
(4.09 KB)
📄
dmraid.pyc
(3.54 KB)
📄
dmraid.pyo
(3.54 KB)
📄
fs.py
(59.14 KB)
📄
fs.pyc
(56.33 KB)
📄
fs.pyo
(56.33 KB)
📄
fslabel.py
(5.95 KB)
📄
fslabel.pyc
(10.01 KB)
📄
fslabel.pyo
(10.01 KB)
📄
fslabeling.py
(4.31 KB)
📄
fslabeling.pyc
(8.81 KB)
📄
fslabeling.pyo
(8.81 KB)
📄
luks.py
(13.33 KB)
📄
luks.pyc
(12.52 KB)
📄
luks.pyo
(12.52 KB)
📄
lvmpv.py
(6.43 KB)
📄
lvmpv.pyc
(5.61 KB)
📄
lvmpv.pyo
(5.61 KB)
📄
mdraid.py
(4.23 KB)
📄
mdraid.pyc
(3.96 KB)
📄
mdraid.pyo
(3.96 KB)
📄
multipath.py
(3 KB)
📄
multipath.pyc
(3.09 KB)
📄
multipath.pyo
(3.09 KB)
📄
prepboot.py
(3.66 KB)
📄
prepboot.pyc
(3.41 KB)
📄
prepboot.pyo
(3.41 KB)
📄
swap.py
(6.76 KB)
📄
swap.pyc
(7.23 KB)
📄
swap.pyo
(7.23 KB)
Editing: fslabeling.py
# fslabeling.py # Filesystem labeling classes for anaconda's storage configuration module. # # Copyright (C) 2014 Red Hat, Inc. # # This copyrighted material is made available to anyone wishing to use, # modify, copy, or redistribute it subject to the terms and conditions of # the GNU General Public License v.2, or (at your option) any later version. # This program is distributed in the hope that it will be useful, but WITHOUT # ANY WARRANTY expressed or implied, including the implied warranties of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General # Public License for more details. You should have received a copy of the # GNU General Public License along with this program; if not, write to the # Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA # 02110-1301, USA. Any Red Hat trademarks that are incorporated in the # source code or documentation are not subject to the GNU General Public # License and may only be used or replicated with the express permission of # Red Hat, Inc. # # Red Hat Author(s): Anne Mulhern <amulhern@redhat.com> import abc from . import fslabel class FSLabeling(object): """An abstract class that represents filesystem labeling actions. """ __metaclass__ = abc.ABCMeta default_label = abc.abstractproperty( doc="Default label set on this filesystem at creation.") label_app = abc.abstractproperty( doc="Post creation filesystem labeling application.") @abc.abstractmethod def labelFormatOK(self, label): """Returns True if this label is correctly formatted for this filesystem, otherwise False. :param str label: the label for this filesystem :rtype: bool """ raise NotImplementedError @abc.abstractmethod def labelingArgs(self, label): """Returns the arguments for writing the label during filesystem creation. These arguments are intended to be passed to the appropriate mkfs application. :param str label: the label to use :return: the arguments :rtype: list of str """ raise NotImplementedError class Ext2FSLabeling(FSLabeling): default_label = property(lambda s: "") label_app = property(lambda s: fslabel.E2Label) def labelFormatOK(self, label): return len(label) < 17 def labelingArgs(self, label): return ["-L", label] class FATFSLabeling(FSLabeling): default_label = property(lambda s: "NO NAME") label_app = property(lambda s: fslabel.DosFsLabel) def labelFormatOK(self, label): return len(label) < 12 and label.upper() == label def labelingArgs(self, label): return ["-n", label] class JFSLabeling(FSLabeling): default_label = property(lambda s: "") label_app = property(lambda s: fslabel.JFSTune) def labelFormatOK(self, label): return len(label) < 17 def labelingArgs(self, label): return ["-L", label] class ReiserFSLabeling(FSLabeling): default_label = property(lambda s: "") label_app = property(lambda s: fslabel.ReiserFSTune) def labelFormatOK(self, label): return len(label) < 17 def labelingArgs(self, label): return ["-l", label] class XFSLabeling(FSLabeling): default_label = property(lambda s: "") label_app = property(lambda s: fslabel.XFSAdmin) def labelFormatOK(self, label): return ' ' not in label and len(label) < 13 def labelingArgs(self, label): return ["-L", label] class HFSLabeling(FSLabeling): default_label = property(lambda s: "Untitled") label_app = property(lambda s: None) def labelFormatOK(self, label): return ':' not in label and len(label) < 28 and len(label) > 0 def labelingArgs(self, label): return ["-l", label] class HFSPlusLabeling(FSLabeling): default_label = property(lambda s: "Untitled") label_app = property(lambda s: None) def labelFormatOK(self, label): return ':' not in label and 0 < len(label) < 129 def labelingArgs(self, label): return ["-v", label] class NTFSLabeling(FSLabeling): default_label = property(lambda s: "") label_app = property(lambda s: fslabel.NTFSLabel) def labelFormatOK(self, label): return len(label) < 129 def labelingArgs(self, label): return ["-L", label]
Upload File
Create Folder