Add new RHEL7 logvol objects to master
[pykickstart.git] / pykickstart / handlers / fc3.py
blobc3389d4ebe4bb6ceb00a0ed1b93cfacb8c357e56
2 # Chris Lumens <clumens@redhat.com>
4 # Copyright 2005, 2006, 2007 Red Hat, Inc.
6 # This copyrighted material is made available to anyone wishing to use, modify,
7 # copy, or redistribute it subject to the terms and conditions of the GNU
8 # General Public License v.2. This program is distributed in the hope that it
9 # will be useful, but WITHOUT ANY WARRANTY expressed or implied, including the
10 # implied warranties of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11 # See the GNU General Public License for more details.
13 # You should have received a copy of the GNU General Public License along with
14 # this program; if not, write to the Free Software Foundation, Inc., 51
15 # Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. Any Red Hat
16 # trademarks that are incorporated in the source code or documentation are not
17 # subject to the GNU General Public License and may only be used or replicated
18 # with the express permission of Red Hat, Inc.
20 __all__ = ["FC3Handler"]
22 from pykickstart import commands
23 from pykickstart.base import BaseHandler
24 from pykickstart.version import FC3
26 class FC3Handler(BaseHandler):
27 version = FC3
29 commandMap = {
30 "auth": commands.authconfig.FC3_Authconfig,
31 "authconfig": commands.authconfig.FC3_Authconfig,
32 "autopart": commands.autopart.FC3_AutoPart,
33 "autostep": commands.autostep.FC3_AutoStep,
34 "bootloader": commands.bootloader.FC3_Bootloader,
35 "cdrom": commands.cdrom.FC3_Cdrom,
36 "clearpart": commands.clearpart.FC3_ClearPart,
37 "cmdline": commands.displaymode.FC3_DisplayMode,
38 "device": commands.device.FC3_Device,
39 "deviceprobe": commands.deviceprobe.FC3_DeviceProbe,
40 "driverdisk": commands.driverdisk.FC3_DriverDisk,
41 "firewall": commands.firewall.FC3_Firewall,
42 "firstboot": commands.firstboot.FC3_Firstboot,
43 "graphical": commands.displaymode.FC3_DisplayMode,
44 "halt": commands.reboot.FC3_Reboot,
45 "harddrive": commands.harddrive.FC3_HardDrive,
46 "ignoredisk": commands.ignoredisk.FC3_IgnoreDisk,
47 "install": commands.upgrade.FC3_Upgrade,
48 "interactive": commands.interactive.FC3_Interactive,
49 "keyboard": commands.keyboard.FC3_Keyboard,
50 "lang": commands.lang.FC3_Lang,
51 "langsupport": commands.langsupport.FC3_LangSupport,
52 "lilo": commands.bootloader.FC3_Bootloader,
53 "lilocheck": commands.lilocheck.FC3_LiloCheck,
54 "logvol": commands.logvol.FC3_LogVol,
55 "method": commands.method.FC3_Method,
56 "monitor": commands.monitor.FC3_Monitor,
57 "mouse": commands.mouse.FC3_Mouse,
58 "network": commands.network.FC3_Network,
59 "nfs": commands.nfs.FC3_NFS,
60 "part": commands.partition.FC3_Partition,
61 "partition": commands.partition.FC3_Partition,
62 "poweroff": commands.reboot.FC3_Reboot,
63 "raid": commands.raid.FC3_Raid,
64 "reboot": commands.reboot.FC3_Reboot,
65 "rootpw": commands.rootpw.FC3_RootPw,
66 "selinux": commands.selinux.FC3_SELinux,
67 "shutdown": commands.reboot.FC3_Reboot,
68 "skipx": commands.skipx.FC3_SkipX,
69 "text": commands.displaymode.FC3_DisplayMode,
70 "timezone": commands.timezone.FC3_Timezone,
71 "upgrade": commands.upgrade.FC3_Upgrade,
72 "url": commands.url.FC3_Url,
73 "vnc": commands.vnc.FC3_Vnc,
74 "volgroup": commands.volgroup.FC3_VolGroup,
75 "xconfig": commands.xconfig.FC3_XConfig,
76 "zerombr": commands.zerombr.FC3_ZeroMbr,
77 "zfcp": commands.zfcp.FC3_ZFCP,
80 dataMap = {
81 "DriverDiskData": commands.driverdisk.FC3_DriverDiskData,
82 "LogVolData": commands.logvol.FC3_LogVolData,
83 "NetworkData": commands.network.FC3_NetworkData,
84 "PartData": commands.partition.FC3_PartData,
85 "RaidData": commands.raid.FC3_RaidData,
86 "VolGroupData": commands.volgroup.FC3_VolGroupData,
87 "ZFCPData": commands.zfcp.FC3_ZFCPData,