Class: Yast::AutoinstDataClass
- Inherits:
-
Module
- Object
- Module
- Yast::AutoinstDataClass
- Defined in:
- ../../src/modules/AutoinstData.rb
Instance Method Summary (collapse)
Instance Method Details
- (Object) main
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 |
# File '../../src/modules/AutoinstData.rb', line 36 def main # Moved here from AutoinstGeneral.ycp # # Keyboard # # global map keyboard = $[]; # # Language # # global string language = ""; # # Mouse, if not autoprobed # @mouse = {} # # Clock Settings # # global map Clock = $[]; # Moved here from AutoinstSoftware.ycp # Packages that should be installed in continue mode @post_packages = [] # Patterns that should be installed in continue mode @post_patterns = [] # Moved here from AutoinstStorage.ycp # Show warning for /boot cyl <1024 @BootCylWarning = true # Show warning for /boot on raid @BootRaidWarning = true # Show warning for /boot on lvm @BootLVMWarning = true end |