2
# Chris Lumens <clumens@redhat.com>
4
# Copyright 2010 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__ = ["F14Handler"]
22
from pykickstart import commands
23
from pykickstart.base import BaseHandler
24
from pykickstart.version import F14
26
class F14Handler(BaseHandler):
30
"auth": commands.authconfig.FC3_Authconfig,
31
"authconfig": commands.authconfig.FC3_Authconfig,
32
"autopart": commands.autopart.F12_AutoPart,
33
"autostep": commands.autostep.FC3_AutoStep,
34
"bootloader": commands.bootloader.F14_Bootloader,
35
"cdrom": commands.cdrom.FC3_Cdrom,
36
"clearpart": commands.clearpart.FC3_ClearPart,
37
"cmdline": commands.displaymode.FC3_DisplayMode,
38
"device": commands.device.F8_Device,
39
"deviceprobe": commands.deviceprobe.FC3_DeviceProbe,
40
"dmraid": commands.dmraid.FC6_DmRaid,
41
"driverdisk": commands.driverdisk.F14_DriverDisk,
42
"fcoe": commands.fcoe.F13_Fcoe,
43
"firewall": commands.firewall.F14_Firewall,
44
"firstboot": commands.firstboot.FC3_Firstboot,
45
"graphical": commands.displaymode.FC3_DisplayMode,
46
"group": commands.group.F12_Group,
47
"halt": commands.reboot.FC6_Reboot,
48
"harddrive": commands.harddrive.FC3_HardDrive,
49
"ignoredisk": commands.ignoredisk.F14_IgnoreDisk,
50
"install": commands.upgrade.F11_Upgrade,
51
"interactive": commands.interactive.F14_Interactive,
52
"iscsi": commands.iscsi.F10_Iscsi,
53
"iscsiname": commands.iscsiname.FC6_IscsiName,
54
"keyboard": commands.keyboard.FC3_Keyboard,
55
"lang": commands.lang.FC3_Lang,
56
"logging": commands.logging.FC6_Logging,
57
"logvol": commands.logvol.F14_LogVol,
58
"mediacheck": commands.mediacheck.FC4_MediaCheck,
59
"method": commands.method.F14_Method,
60
"monitor": commands.monitor.F10_Monitor,
61
"multipath": commands.multipath.FC6_MultiPath,
62
"network": commands.network.F9_Network,
63
"nfs": commands.nfs.FC6_NFS,
64
"part": commands.partition.F14_Partition,
65
"partition": commands.partition.F14_Partition,
66
"poweroff": commands.reboot.FC6_Reboot,
67
"raid": commands.raid.F14_Raid,
68
"reboot": commands.reboot.FC6_Reboot,
69
"repo": commands.repo.F14_Repo,
70
"rescue": commands.rescue.F10_Rescue,
71
"rootpw": commands.rootpw.F8_RootPw,
72
"selinux": commands.selinux.FC3_SELinux,
73
"services": commands.services.FC6_Services,
74
"shutdown": commands.reboot.FC6_Reboot,
75
"skipx": commands.skipx.FC3_SkipX,
76
"sshpw": commands.sshpw.F13_SshPw,
77
"text": commands.displaymode.FC3_DisplayMode,
78
"timezone": commands.timezone.FC6_Timezone,
79
"updates": commands.updates.F7_Updates,
80
"upgrade": commands.upgrade.F11_Upgrade,
81
"url": commands.url.F14_Url,
82
"user": commands.user.F12_User,
83
"vnc": commands.vnc.F9_Vnc,
84
"volgroup": commands.volgroup.FC3_VolGroup,
85
"xconfig": commands.xconfig.F14_XConfig,
86
"zerombr": commands.zerombr.F9_ZeroMbr,
87
"zfcp": commands.zfcp.F14_ZFCP,
91
"DriverDiskData": commands.driverdisk.F14_DriverDiskData,
92
"DeviceData": commands.device.F8_DeviceData,
93
"DmRaidData": commands.dmraid.FC6_DmRaidData,
94
"FcoeData": commands.fcoe.F13_FcoeData,
95
"GroupData": commands.group.F12_GroupData,
96
"IscsiData": commands.iscsi.F10_IscsiData,
97
"LogVolData": commands.logvol.F14_LogVolData,
98
"MultiPathData": commands.multipath.FC6_MultiPathData,
99
"NetworkData": commands.network.F8_NetworkData,
100
"PartData": commands.partition.F14_PartData,
101
"RaidData": commands.raid.F14_RaidData,
102
"RepoData": commands.repo.F14_RepoData,
103
"SshPwData": commands.sshpw.F13_SshPwData,
104
"UserData": commands.user.F12_UserData,
105
"VolGroupData": commands.volgroup.FC3_VolGroupData,
106
"ZFCPData": commands.zfcp.F14_ZFCPData,