文件操作 - errors.py
返回文件管理
返回主菜单
删除本文件
文件: /usr/lib/python2.7/site-packages/blivet/errors.py
编辑文件内容
# errors.py # Exception classes for anaconda's storage configuration module. # # Copyright (C) 2009 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): Dave Lehman <dlehman@redhat.com> # from .i18n import N_ class StorageError(Exception): def __init__(self, *args, **kwargs): self.hardware_fault = kwargs.pop("hardware_fault", False) super(StorageError, self).__init__(*args, **kwargs) class NoDisksError(StorageError): pass # Device class DeviceError(StorageError): pass class DeviceCreateError(DeviceError): pass class DeviceDestroyError(DeviceError): pass class DeviceResizeError(DeviceError): pass class DeviceSetupError(DeviceError): pass class DeviceTeardownError(DeviceError): pass class DeviceUserDeniedFormatError(DeviceError): pass # DeviceFormat class DeviceFormatError(StorageError): pass class FormatCreateError(DeviceFormatError): pass class FormatDestroyError(DeviceFormatError): pass class FormatSetupError(DeviceFormatError): pass class FormatTeardownError(DeviceFormatError): pass class DMRaidMemberError(DeviceFormatError): pass class MultipathMemberError(DeviceFormatError): pass class FSError(DeviceFormatError): pass class FSResizeError(FSError): def __init__(self, message, details): FSError.__init__(self, message) self.details = details class DirtyFSError(FSError): def __init__(self, devices): FSError.__init__(self) self.devices = devices class LUKSError(DeviceFormatError): pass class MDMemberError(DeviceFormatError): pass class PhysicalVolumeError(DeviceFormatError): pass class SinglePhysicalVolumeError(DeviceFormatError): pass class SwapSpaceError(DeviceFormatError): pass class DiskLabelError(DeviceFormatError): pass class InvalidDiskLabelError(DiskLabelError): pass class DiskLabelCommitError(DiskLabelError): pass class AlignmentError(DiskLabelError): pass # devicelibs class SwapError(StorageError): pass class SuspendError(SwapError): pass class OldSwapError(SwapError): pass class UnknownSwapError(SwapError): pass class MDRaidError(StorageError): pass class RaidError(StorageError): pass class DMError(StorageError): pass class LVMError(StorageError): pass class CryptoError(StorageError): pass class MPathError(StorageError): pass class LoopError(StorageError): pass class BTRFSError(StorageError): pass class BTRFSValueError(BTRFSError, ValueError): pass # DeviceTree class DeviceTreeError(StorageError): pass class DeviceNotFoundError(StorageError): pass class UnusableConfigurationError(StorageError): """ User has an unusable initial storage configuration. """ suggestion = "" class DiskLabelScanError(UnusableConfigurationError): suggestion = N_("For some reason we were unable to locate a disklabel on a " "disk that the kernel is reporting partitions on. It is " "unclear what the exact problem is. Please file a bug at " "http://bugzilla.redhat.com") class CorruptGPTError(UnusableConfigurationError): suggestion = N_("Either restore the disklabel to a completely working " "state or remove it completely.\n" "Hint: parted can restore it or wipefs can remove it.") class DuplicateVGError(UnusableConfigurationError): suggestion = N_("Rename one of the volume groups so the names are " "distinct.\n" "Hint 1: vgrename accepts UUID in place of the old name.\n" "Hint 2: You can get the VG UUIDs by running " "'pvs -o +vg_uuid'.") # DeviceAction class DeviceActionError(StorageError): pass # partitioning class PartitioningError(StorageError): pass class NotEnoughFreeSpaceError(StorageError): pass # udev class UdevError(StorageError): pass # fstab class UnrecognizedFSTabEntryError(StorageError): pass class FSTabTypeMismatchError(StorageError): pass # dasd class DasdFormatError(StorageError): pass # size class SizePlacesError(StorageError): pass # probing class UnknownSourceDeviceError(StorageError): pass # factories class DeviceFactoryError(StorageError): pass # missing dependencies class DependencyError(StorageError): """Raised when an external dependency is missing or not available""" pass
修改文件时间
将文件时间修改为当前时间的前一年
删除文件