| OLD | NEW |
| 1 # Copy this file to tests_base.cfg and edit it. | 1 # Copy this file to tests_base.cfg and edit it. |
| 2 # | 2 # |
| 3 # Define the objects we'll be using | 3 # Define the objects we'll be using |
| 4 vms = vm1 | 4 vms = vm1 |
| 5 images = image1 | 5 images = image1 |
| 6 cdroms = cd1 | 6 cdroms = cd1 |
| 7 nics = nic1 | 7 nics = nic1 |
| 8 monitors = humanmonitor1 | 8 monitors = humanmonitor1 |
| 9 | 9 |
| 10 # Choose the main VM and monitor | 10 # Choose the main VM and monitor |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 | 83 |
| 84 - unattended_install: | 84 - unattended_install: |
| 85 type = unattended_install | 85 type = unattended_install |
| 86 kill_vm = yes | 86 kill_vm = yes |
| 87 kill_vm_gracefully = yes | 87 kill_vm_gracefully = yes |
| 88 kill_vm_on_error = yes | 88 kill_vm_on_error = yes |
| 89 force_create_image = yes | 89 force_create_image = yes |
| 90 pre_command += " scripts/unattended.py;" | 90 pre_command += " scripts/unattended.py;" |
| 91 extra_params += " -boot d" | 91 extra_params += " -boot d" |
| 92 guest_port_unattended_install = 12323 | 92 guest_port_unattended_install = 12323 |
| 93 floppy = "images/floppy.img" |
| 93 kernel = vmlinuz | 94 kernel = vmlinuz |
| 94 initrd = initrd.img | 95 initrd = initrd.img |
| 95 nic_mode = tap | 96 nic_mode = tap |
| 96 variants: | 97 variants: |
| 97 # Install guest from cdrom | 98 # Install guest from cdrom |
| 98 - cdrom: | 99 - cdrom: |
| 99 medium = cdrom | 100 medium = cdrom |
| 100 nic_mode = user | 101 nic_mode = user |
| 101 redirs += " unattended_install" | 102 redirs += " unattended_install" |
| 102 kernel = | 103 kernel = |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 - hwclock: | 198 - hwclock: |
| 198 test_control_file = hwclock.control | 199 test_control_file = hwclock.control |
| 199 - rtc: | 200 - rtc: |
| 200 test_control_file = rtc.control | 201 test_control_file = rtc.control |
| 201 | 202 |
| 202 - linux_s3: install setup unattended_install.cdrom | 203 - linux_s3: install setup unattended_install.cdrom |
| 203 type = linux_s3 | 204 type = linux_s3 |
| 204 | 205 |
| 205 - timedrift: install setup unattended_install.cdrom | 206 - timedrift: install setup unattended_install.cdrom |
| 206 variants: | 207 variants: |
| 207 - ntp: | 208 - with_load: |
| 208 variants: | 209 type = timedrift |
| 209 - with_load: | 210 # Pin the VM and host load to CPU #0 |
| 210 type = timedrift | 211 cpu_mask = 0x1 |
| 211 # Pin the VM and host load to CPU #0 | 212 # Set the load and rest durations |
| 212 cpu_mask = 0x1 | 213 load_duration = 20 |
| 213 # Set the load and rest durations | 214 rest_duration = 20 |
| 214 load_duration = 20 | 215 # Fail if the drift after load is higher than 50% |
| 215 rest_duration = 20 | 216 drift_threshold = 50 |
| 216 # Fail if the drift after load is higher than 50% | 217 # Fail if the drift after the rest period is higher than 10% |
| 217 drift_threshold = 50 | 218 drift_threshold_after_rest = 10 |
| 218 # Fail if the drift after the rest period is higher than
10% | 219 # For now, make sure this test is executed alone |
| 219 drift_threshold_after_rest = 10 | 220 used_cpus = 100 |
| 220 # For now, make sure this test is executed alone | 221 - with_migration: |
| 221 used_cpus = 100 | 222 type = timedrift_with_migration |
| 222 - with_migration: | 223 migration_iterations = 3 |
| 223 type = timedrift_with_migration | 224 drift_threshold = 10 |
| 224 migration_iterations = 3 | 225 drift_threshold_single = 3 |
| 225 drift_threshold = 10 | 226 - with_reboot: |
| 226 drift_threshold_single = 3 | 227 type = timedrift_with_reboot |
| 227 - with_reboot: | 228 reboot_iterations = 1 |
| 228 type = timedrift_with_reboot | 229 drift_threshold = 10 |
| 229 reboot_iterations = 1 | 230 drift_threshold_single = 3 |
| 230 drift_threshold = 10 | 231 - with_stop: |
| 231 drift_threshold_single = 3 | 232 type = timedrift_with_stop |
| 232 - with_stop: | 233 stop_interations = 1 |
| 233 type = timedrift_with_stop | 234 drift_threshold = 10 |
| 234 stop_interations = 1 | 235 drift_threshold_single = 3 |
| 235 drift_threshold = 10 | |
| 236 drift_threshold_single = 3 | |
| 237 - date: | |
| 238 variants: | |
| 239 - with_load: | |
| 240 type = timedrift | |
| 241 # Pin the VM and host load to CPU #0 | |
| 242 cpu_mask = 0x1 | |
| 243 # Set the load and rest durations | |
| 244 load_duration = 20 | |
| 245 rest_duration = 20 | |
| 246 # Fail if the drift after load is higher than 50% | |
| 247 drift_threshold = 50 | |
| 248 # Fail if the drift after the rest period is higher than
10% | |
| 249 drift_threshold_after_rest = 10 | |
| 250 # For now, make sure this test is executed alone | |
| 251 used_cpus = 100 | |
| 252 - with_migration: | |
| 253 type = timedrift_with_migration | |
| 254 migration_iterations = 3 | |
| 255 drift_threshold = 10 | |
| 256 drift_threshold_single = 3 | |
| 257 - with_reboot: | |
| 258 type = timedrift_with_reboot | |
| 259 reboot_iterations = 1 | |
| 260 drift_threshold = 10 | |
| 261 drift_threshold_single = 3 | |
| 262 - with_stop: | |
| 263 type = timedrift_with_stop | |
| 264 stop_interations = 1 | |
| 265 drift_threshold = 10 | |
| 266 drift_threshold_single = 3 | |
| 267 | 236 |
| 268 - balloon_check: install setup unattended_install.cdrom | 237 - balloon_check: install setup unattended_install.cdrom |
| 269 type = balloon_check | 238 type = balloon_check |
| 270 extra_params += " -balloon virtio" | 239 extra_params += " -balloon virtio" |
| 271 iterations = 5 | 240 iterations = 5 |
| 272 | 241 |
| 273 - stress_boot: install setup unattended_install.cdrom | 242 - stress_boot: install setup unattended_install.cdrom |
| 274 type = stress_boot | 243 type = stress_boot |
| 275 max_vms = 5 | 244 max_vms = 5 |
| 276 alive_test_cmd = uname -a | 245 alive_test_cmd = uname -a |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 310 download_cmd = "git clone" | 279 download_cmd = "git clone" |
| 311 rsc_server = "git://the.resource.server/powershell" | 280 rsc_server = "git://the.resource.server/powershell" |
| 312 dst_rsc_dir = "C:\" | 281 dst_rsc_dir = "C:\" |
| 313 dst_rsc_path = "C:\powershell\stub\stub.ps1" | 282 dst_rsc_path = "C:\powershell\stub\stub.ps1" |
| 314 | 283 |
| 315 - iozone_windows: unattended_install.cdrom | 284 - iozone_windows: unattended_install.cdrom |
| 316 type = iozone_windows | 285 type = iozone_windows |
| 317 iozone_cmd = "D:\IOzone\iozone.exe -a" | 286 iozone_cmd = "D:\IOzone\iozone.exe -a" |
| 318 iozone_timeout = 3600 | 287 iozone_timeout = 3600 |
| 319 | 288 |
| 320 - @whql: install setup unattended_install.cdrom | |
| 321 nic_mode = tap | |
| 322 # Replace this with the address of an installed DTM server | |
| 323 server_address = 10.20.30.40 | |
| 324 # The server should run rss.exe like a regular Windows VM, preferably | |
| 325 # with administrator privileges (or at least with permission to write | |
| 326 # to the DTM studio directory) | |
| 327 server_shell_port = 10022 | |
| 328 server_file_transfer_port = 10023 | |
| 329 server_studio_path = %programfiles%\Microsoft Driver Test Manager\Studio | |
| 330 wtt_services = wttsvc | |
| 331 variants: | |
| 332 - whql_client_install: | |
| 333 type = whql_client_install | |
| 334 dsso_delete_machine_binary = deps/whql_delete_machine_15.exe | |
| 335 # The username and password are required for accessing the DTM c
lient | |
| 336 # installer binary shared by the server | |
| 337 server_username = administrator | |
| 338 server_password = 1q2w3eP | |
| 339 # This path refers to a shared directory on the server | |
| 340 # (the final cmd will be something like \\servername\DTMInstall\
...) | |
| 341 install_cmd = \DTMInstall\Client\Setup.exe /passive | |
| 342 install_timeout = 3600 | |
| 343 - whql_submission: whql_client_install | |
| 344 type = whql_submission | |
| 345 extra_params += " -snapshot" | |
| 346 dsso_test_binary = deps/whql_submission_15.exe | |
| 347 test_timeout = 3600 | |
| 348 device_data = cat0 cat1 cat2 cat3 logoarch logoos whqlos whqlqua
l prog desc filter virt | |
| 349 descriptors = desc1 desc2 desc3 | |
| 350 # DeviceData names | |
| 351 dd_name_cat0 = Category | |
| 352 dd_name_cat1 = Category | |
| 353 dd_name_cat2 = Category | |
| 354 dd_name_cat3 = Category | |
| 355 dd_name_logoarch = LogoProcessorArchitecture | |
| 356 dd_name_logoos = LogoOperatingSystem | |
| 357 dd_name_whqlos = WhqlOs | |
| 358 dd_name_whqlqual = WhqlQualification | |
| 359 dd_name_prog = LogoProgramId | |
| 360 dd_name_desc = LogoProgramDescription | |
| 361 dd_name_filter = WDKFilterAttribute | |
| 362 dd_name_virt = ParaVirtualizationDriver | |
| 363 # Common DeviceData data | |
| 364 dd_data_filter = FilterIfNoInf | |
| 365 dd_data_virt = True | |
| 366 variants: | |
| 367 - keyboard: | |
| 368 # test_device is a regular expression that should match
a device's | |
| 369 # name as it appears in device manager. The first devic
e that matches | |
| 370 # is used. | |
| 371 test_device = keyboard | |
| 372 # Set timeout to 10 hours | |
| 373 test_timeout = 36000 | |
| 374 dd_data_cat0 = Input\Keyboard | |
| 375 dd_data_cat1 = Device Fundamentals | |
| 376 dd_data_cat2 = System Fundamentals\Dynamic Partitioning | |
| 377 dd_data_prog = InputKbd | |
| 378 dd_data_desc = Input > Keyboard | |
| 379 - hdd: | |
| 380 test_device = qemu harddisk | |
| 381 device_data += " ex0 ex1 ex2 ex3" | |
| 382 dd_data_cat0 = Storage\Device Class\Disk\Disk | |
| 383 dd_data_cat1 = Storage\Device Class\Disk\Fixed | |
| 384 dd_data_cat2 = Storage\Device Class\Disk\Bus\ATA | |
| 385 dd_data_cat3 = Device Fundamentals | |
| 386 dd_data_prog = StorHDD | |
| 387 dd_data_desc = Storage > Hard Disk Drive (HDD) | |
| 388 dd_name_ex0 = Storage_bus_type | |
| 389 dd_data_ex0 = ATA/ATAPI | |
| 390 dd_name_ex1 = Hybrid_HDD_Support | |
| 391 dd_data_ex1 = 0 | |
| 392 dd_name_ex2 = Non_Rotating_Media | |
| 393 dd_data_ex2 = 0 | |
| 394 dd_name_ex3 = Secure_Storage | |
| 395 dd_data_ex3 = 0 | |
| 396 variants: | |
| 397 - full: | |
| 398 # Yes, 100 hours, this is not a mistake | |
| 399 test_timeout = 360000 | |
| 400 - syscache_test: | |
| 401 job_filter = syscache test | |
| 402 test_timeout = 7200 | |
| 403 | |
| 404 - guest_s4: install setup unattended_install.cdrom | 289 - guest_s4: install setup unattended_install.cdrom |
| 405 type = guest_s4 | 290 type = guest_s4 |
| 406 check_s4_support_cmd = grep -q disk /sys/power/state | 291 check_s4_support_cmd = grep -q disk /sys/power/state |
| 407 test_s4_cmd = "cd /tmp; nohup tcpdump -q -t ip host localhost" | 292 test_s4_cmd = "cd /tmp; nohup tcpdump -q -t ip host localhost" |
| 408 check_s4_cmd = pgrep tcpdump | 293 check_s4_cmd = pgrep tcpdump |
| 409 set_s4_cmd = echo disk > /sys/power/state | 294 set_s4_cmd = echo disk > /sys/power/state |
| 410 kill_test_s4_cmd = pkill tcpdump | 295 kill_test_s4_cmd = pkill tcpdump |
| 411 services_up_timeout = 30 | 296 services_up_timeout = 30 |
| 412 relogin_timeout = 240 | 297 relogin_timeout = 240 |
| 413 | 298 |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 486 # Max paralel runs machine | 371 # Max paralel runs machine |
| 487 ksm_parallel_ratio = 4 | 372 ksm_parallel_ratio = 4 |
| 488 # Host memory reserve (default - best fit for used mem) | 373 # Host memory reserve (default - best fit for used mem) |
| 489 # ksm_host_reserve = 512 | 374 # ksm_host_reserve = 512 |
| 490 # ksm_guest_reserve = 1024 | 375 # ksm_guest_reserve = 1024 |
| 491 variants: | 376 variants: |
| 492 - ksm_serial: | 377 - ksm_serial: |
| 493 ksm_mode = "serial" | 378 ksm_mode = "serial" |
| 494 - ksm_parallel: | 379 - ksm_parallel: |
| 495 ksm_mode = "parallel" | 380 ksm_mode = "parallel" |
| 496 | |
| 497 - iofuzz: | 381 - iofuzz: |
| 498 type = iofuzz | 382 type = iofuzz |
| 499 | 383 |
| 500 - virtio_console: | |
| 501 vms = '' | |
| 502 type = virtio_console | |
| 503 # smoke params - $console_type:data_string | |
| 504 # FIXME: test_smoke doesn't work with console yet (virtio_console bug) | |
| 505 # "serialport;console:Custom data" | |
| 506 virtio_console_smoke = "serialport" | |
| 507 # loopback params - '$source_console_type@buffer_length:$destination_con
sole_type1@buffer_length:...:$loopback_buffer_length;...' | |
| 508 virtio_console_loopback = "serialport:serialport;serialport@1024:serialp
ort@32:console@1024:console@8:16" | |
| 509 # perf params - $console_type@buffer_length:$test_duration | |
| 510 # FIXME: test_perf doesn't work with console yet (virtio_console bug) | |
| 511 # virtio_console_perf = "serialport;serialport@1000000:120;console@1024:
60" | |
| 512 virtio_console_perf = "serialport;serialport@1000000:120" | |
| 513 | |
| 514 # This unit test module is for older branches of KVM that use the | 384 # This unit test module is for older branches of KVM that use the |
| 515 # kvmctl test harness (such as the code shipped with RHEL 5.x) | 385 # kvmctl test harness (such as the code shipped with RHEL 5.x) |
| 516 - unit_test_kvmctl: | 386 - unit_test_kvmctl: |
| 517 type = unit_test | 387 type = unit_test |
| 518 vms = '' | 388 vms = '' |
| 519 profilers = '' | 389 profilers = '' |
| 520 variants: | 390 variants: |
| 521 - access: | 391 - access: |
| 522 case = access | 392 case = access |
| 523 - apic: | 393 - apic: |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 613 kill_vm_gracefully = no | 483 kill_vm_gracefully = no |
| 614 # Do not define test variants below shutdown | 484 # Do not define test variants below shutdown |
| 615 | 485 |
| 616 | 486 |
| 617 # NICs | 487 # NICs |
| 618 variants: | 488 variants: |
| 619 - @rtl8139: | 489 - @rtl8139: |
| 620 nic_model = rtl8139 | 490 nic_model = rtl8139 |
| 621 - e1000: | 491 - e1000: |
| 622 nic_model = e1000 | 492 nic_model = e1000 |
| 623 - virtio_net: | 493 - virtio: |
| 624 nic_model = virtio | 494 nic_model = virtio |
| 625 | 495 |
| 626 | 496 |
| 627 # Guests | 497 # Guests |
| 628 variants: | 498 variants: |
| 629 # Linux section | 499 # Linux section |
| 630 - @Linux: | 500 - @Linux: |
| 631 no autoit iozone_windows whql | 501 no autoit iozone_windows |
| 632 shutdown_command = shutdown -h now | 502 shutdown_command = shutdown -h now |
| 633 reboot_command = shutdown -r now | 503 reboot_command = shutdown -r now |
| 634 status_test_command = echo $? | 504 status_test_command = echo $? |
| 635 username = root | 505 username = root |
| 636 password = 123456 | 506 password = 123456 |
| 637 shell_client = ssh | 507 shell_client = ssh |
| 638 shell_port = 22 | 508 shell_port = 22 |
| 639 file_transfer_client = scp | 509 file_transfer_client = scp |
| 640 file_transfer_port = 22 | 510 file_transfer_port = 22 |
| 641 mem_chk_cmd = dmidecode -t 17 | awk -F: '/Size/ {print $2}' | 511 mem_chk_cmd = dmidecode -t 17 | awk -F: '/Size/ {print $2}' |
| 642 mem_chk_cur_cmd = grep MemTotal /proc/meminfo | 512 mem_chk_cur_cmd = grep MemTotal /proc/meminfo |
| 643 cpu_chk_cmd = grep -c processor /proc/cpuinfo | 513 cpu_chk_cmd = grep -c processor /proc/cpuinfo |
| 644 unattended_install.cdrom: | |
| 645 # If you want to use floppy to hold kickstarts, | |
| 646 # comment the 3 lines below | |
| 647 cdroms += " unattended" | |
| 648 drive_index_unattended = 1 | |
| 649 drive_index_cd1 = 2 | |
| 650 timedrift: | 514 timedrift: |
| 651 extra_params += " -no-kvm-pit-reinjection" | 515 extra_params += " -no-kvm-pit-reinjection" |
| 652 time_command = date +'TIME: %a %m/%d/%Y %H:%M:%S.%N' | 516 time_command = date +'TIME: %a %m/%d/%Y %H:%M:%S.%N' |
| 653 time_filter_re = "(?:TIME: \w\w\w )(.{19})(?:\.\d\d)" | 517 time_filter_re = "(?:TIME: \w\w\w )(.{19})(?:\.\d\d)" |
| 654 time_format = "%m/%d/%Y %H:%M:%S" | 518 time_format = "%m/%d/%Y %H:%M:%S" |
| 655 guest_load_command = "dd if=/dev/urandom of=/dev/null" | 519 guest_load_command = "dd if=/dev/urandom of=/dev/null" |
| 656 guest_load_instances = 2 | 520 guest_load_instances = 2 |
| 657 guest_load_stop_command = "killall -9 dd" | 521 guest_load_stop_command = "killall -9 dd" |
| 658 host_load_command = "bzip2 -c --best /dev/urandom > /dev/null" | 522 host_load_command = "bzip2 -c --best /dev/urandom > /dev/null" |
| 659 host_load_instances = 8 | 523 host_load_instances = 8 |
| 660 ntp: | |
| 661 time_command = "ntpdate -d -q ns1.nay.redhat.com" | |
| 662 time_filter_re = "originate timestamp:.*, (.\w+\s+\d+\s+\d+\s+\d
+:\d+:\d+)\.(.\d+)" | |
| 663 time_format = "%b %d %Y %H:%M:%S" | |
| 664 date: | |
| 665 time_command = date +'TIME: %a %m/%d/%Y %H:%M:%S.%N' | |
| 666 time_filter_re = "(?:TIME: \w\w\w )(.{19})(?:\.\d\d)" | |
| 667 time_format = "%m/%d/%Y %H:%M:%S" | |
| 668 | 524 |
| 669 variants: | 525 variants: |
| 670 - Fedora: | 526 - Fedora: |
| 671 no setup | 527 no setup |
| 672 shell_prompt = "^\[.*\][\#\$]\s*$" | 528 shell_prompt = "^\[.*\][\#\$]\s*$" |
| 673 unattended_install.cdrom: | 529 unattended_install.cdrom: |
| 674 pxe_dir = "images/pxeboot" | 530 pxe_dir = "images/pxeboot" |
| 675 pxe_image = "vmlinuz" | 531 pxe_image = "vmlinuz" |
| 676 pxe_initrd = "initrd.img" | 532 pxe_initrd = "initrd.img" |
| 677 tftp = "images/tftpboot" | 533 tftp = "images/tftpboot" |
| 678 bootp = "/pxelinux.0" | 534 bootp = "/pxelinux.0" |
| 679 extra_params += " -boot cn" | 535 extra_params += " -boot cn" |
| 680 # You have to use ks=floppy if you want to use floppies to | 536 kernel_args = "ks=floppy nicdelay=60 console=ttyS0,115200 co
nsole=tty0" |
| 681 # hold your kickstart file | |
| 682 #kernel_args = "ks=floppy nicdelay=60 console=ttyS0,115200 c
onsole=tty0" | |
| 683 kernel_args = "ks=cdrom nicdelay=60 console=ttyS0,115200 con
sole=tty0" | |
| 684 | 537 |
| 685 variants: | 538 variants: |
| 686 - 8.32: | 539 - 8.32: |
| 687 no setup | 540 no setup |
| 688 image_name = fc8-32 | 541 image_name = fc8-32 |
| 689 cdrom_cd1 = linux/Fedora-8-i386-DVD.iso | 542 cdrom_cd1 = linux/Fedora-8-i386-DVD.iso |
| 690 md5sum = dd6c79fddfff36d409d02242e7b10189 | 543 md5sum = dd6c79fddfff36d409d02242e7b10189 |
| 691 md5sum_1m = dabae451bb69fbbad0e505b25144b1f9 | 544 md5sum_1m = dabae451bb69fbbad0e505b25144b1f9 |
| 692 install: | 545 install: |
| 693 steps = Fedora-8-i386.steps | 546 steps = Fedora-8-i386.steps |
| 694 unattended_install.cdrom: | 547 unattended_install.cdrom: |
| 695 unattended_file = unattended/Fedora-8.ks | 548 unattended_file = unattended/Fedora-8.ks |
| 696 tftp = images/f8-32/tftpboot | 549 tftp = images/f8-32/tftpboot |
| 697 #floppy = images/f8-32/ks.vfd | 550 floppy = images/f8-32/floppy.img |
| 698 cdrom_unattended = images/f8-32/ks.iso | |
| 699 | 551 |
| 700 - 8.64: | 552 - 8.64: |
| 701 no setup | 553 no setup |
| 702 image_name = f8-64 | 554 image_name = f8-64 |
| 703 cdrom_cd1 = linux/Fedora-8-x86_64-DVD.iso | 555 cdrom_cd1 = linux/Fedora-8-x86_64-DVD.iso |
| 704 md5sum = 2cb231a86709dec413425fd2f8bf5295 | 556 md5sum = 2cb231a86709dec413425fd2f8bf5295 |
| 705 md5sum_1m = 145f6414e19492649a56c89f0a45e719 | 557 md5sum_1m = 145f6414e19492649a56c89f0a45e719 |
| 706 install: | 558 install: |
| 707 steps = Fedora-8-64.steps | 559 steps = Fedora-8-64.steps |
| 708 unattended_install.cdrom: | 560 unattended_install.cdrom: |
| 709 unattended_file = unattended/Fedora-8.ks | 561 unattended_file = unattended/Fedora-8.ks |
| 710 tftp = images/f8-64/tftpboot | 562 tftp = images/f8-64/tftpboot |
| 711 #floppy = images/f8-64/ks.vfd | 563 floppy = images/f8-64/floppy.img |
| 712 cdrom_unattended = images/f8-64/ks.iso | |
| 713 | 564 |
| 714 - 9.32: | 565 - 9.32: |
| 715 image_name = f9-32 | 566 image_name = f9-32 |
| 716 cdrom_cd1 = linux/Fedora-9-i386-DVD.iso | 567 cdrom_cd1 = linux/Fedora-9-i386-DVD.iso |
| 717 md5sum = 72601f685ea8c808c303353d8bf4d307 | 568 md5sum = 72601f685ea8c808c303353d8bf4d307 |
| 718 md5sum_1m = f24fa25689e5863f1b99984c6feb787f | 569 md5sum_1m = f24fa25689e5863f1b99984c6feb787f |
| 719 install: | 570 install: |
| 720 steps = Fedora-9-i386.steps | 571 steps = Fedora-9-i386.steps |
| 721 unattended_install.cdrom: | 572 unattended_install.cdrom: |
| 722 unattended_file = unattended/Fedora-9.ks | 573 unattended_file = unattended/Fedora-9.ks |
| 723 tftp = images/f9-32/tftpboot | 574 tftp = images/f9-32/tftpboot |
| 724 #floppy = images/f9-32/ks.vfd | 575 floppy = images/f9-32/floppy.img |
| 725 cdrom_unattended = images/f9-32/ks.iso | |
| 726 | 576 |
| 727 - 9.64: | 577 - 9.64: |
| 728 image_name = f9-64 | 578 image_name = f9-64 |
| 729 cdrom_cd1 = linux/Fedora-9-x86_64-DVD.iso | 579 cdrom_cd1 = linux/Fedora-9-x86_64-DVD.iso |
| 730 md5sum = 05b2ebeed273ec54d6f9ed3d61ea4c96 | 580 md5sum = 05b2ebeed273ec54d6f9ed3d61ea4c96 |
| 731 md5sum_1m = 9822ab5097e37e8fe306ef2192727db4 | 581 md5sum_1m = 9822ab5097e37e8fe306ef2192727db4 |
| 732 install: | 582 install: |
| 733 steps = Fedora-9-64.steps | 583 steps = Fedora-9-64.steps |
| 734 unattended_install.cdrom: | 584 unattended_install.cdrom: |
| 735 unattended_file = unattended/Fedora-9.ks | 585 unattended_file = unattended/Fedora-9.ks |
| 736 tftp = images/f9-64/tftpboot | 586 tftp = images/f9-64/tftpboot |
| 737 #floppy = images/f9-64/ks.vfd | 587 floppy = images/f9-64/floppy.img |
| 738 cdrom_unattended = images/f9-64/ks.iso | |
| 739 | 588 |
| 740 - 10.32: | 589 - 10.32: |
| 741 image_name = f10-32 | 590 image_name = f10-32 |
| 742 cdrom_cd1 = linux/Fedora-10-i386-DVD.iso | 591 cdrom_cd1 = linux/Fedora-10-i386-DVD.iso |
| 743 md5sum = 27e581edb392728c4a07d00d3fc5ced0 | 592 md5sum = 27e581edb392728c4a07d00d3fc5ced0 |
| 744 md5sum_1m = bd67c68bdf595e4ba7131ec702159181 | 593 md5sum_1m = bd67c68bdf595e4ba7131ec702159181 |
| 745 unattended_install.cdrom: | 594 unattended_install.cdrom: |
| 746 unattended_file = unattended/Fedora-10.ks | 595 unattended_file = unattended/Fedora-10.ks |
| 747 tftp = images/f10-32/tftpboot | 596 tftp = images/f10-32/tftpboot |
| 748 #floppy = images/f10-32/ks.vfd | 597 floppy = images/f10-32/floppy.img |
| 749 cdrom_unattended = images/f10-32/ks.iso | |
| 750 | 598 |
| 751 - 10.64: | 599 - 10.64: |
| 752 image_name = f10-64 | 600 image_name = f10-64 |
| 753 cdrom_cd1 = linux/Fedora-10-x86_64-DVD.iso | 601 cdrom_cd1 = linux/Fedora-10-x86_64-DVD.iso |
| 754 sha1sum = f1e5ae7db6a1ba227de7294c4112385922388648 | 602 sha1sum = f1e5ae7db6a1ba227de7294c4112385922388648 |
| 755 md5sum_1m = 732857cbf40c80c34683e874601d982c | 603 md5sum_1m = 732857cbf40c80c34683e874601d982c |
| 756 unattended_install.cdrom: | 604 unattended_install.cdrom: |
| 757 unattended_file = unattended/Fedora-10.ks | 605 unattended_file = unattended/Fedora-10.ks |
| 758 tftp = images/f10-64/tftpboot | 606 tftp = images/f10-64/tftpboot |
| 759 #floppy = images/f10-64/ks.vfd | 607 floppy = images/f10-64/floppy.img |
| 760 cdrom_unattended = images/f10-64/ks.iso | |
| 761 | 608 |
| 762 - 11.32: | 609 - 11.32: |
| 763 image_name = f11-32 | 610 image_name = f11-32 |
| 764 cdrom_cd1 = linux/Fedora-11-i386-DVD.iso | 611 cdrom_cd1 = linux/Fedora-11-i386-DVD.iso |
| 765 md5sum = e3b1e2d1ba42aa4705fa5f41771b3927 | 612 md5sum = e3b1e2d1ba42aa4705fa5f41771b3927 |
| 766 md5sum_1m = dc8ddf90648c247339c721395aa49714 | 613 md5sum_1m = dc8ddf90648c247339c721395aa49714 |
| 767 install: | 614 install: |
| 768 steps = Fedora-11-32.steps | 615 steps = Fedora-11-32.steps |
| 769 unattended_install.cdrom: | 616 unattended_install.cdrom: |
| 770 unattended_file = unattended/Fedora-11.ks | 617 unattended_file = unattended/Fedora-11.ks |
| 771 tftp = images/f11-32/tftpboot | 618 tftp = images/f11-32/tftpboot |
| 772 #floppy = images/f11-32/ks.vfd | 619 floppy = images/f11-32/floppy.img |
| 773 cdrom_unattended = images/f11-32/ks.iso | |
| 774 | 620 |
| 775 - 11.64: | 621 - 11.64: |
| 776 image_name = f11-64 | 622 image_name = f11-64 |
| 777 cdrom_cd1 = linux/Fedora-11-x86_64-DVD.iso | 623 cdrom_cd1 = linux/Fedora-11-x86_64-DVD.iso |
| 778 md5sum = 9d419844adeb93120215fe7505c9bce8 | 624 md5sum = 9d419844adeb93120215fe7505c9bce8 |
| 779 md5sum_1m = 405ee05e2387a2e4328b008d5bcbdd1e | 625 md5sum_1m = 405ee05e2387a2e4328b008d5bcbdd1e |
| 780 unattended_install.cdrom: | 626 unattended_install.cdrom: |
| 781 unattended_file = unattended/Fedora-11.ks | 627 unattended_file = unattended/Fedora-11.ks |
| 782 tftp = images/f11-64/tftpboot | 628 tftp = images/f11-64/tftpboot |
| 783 #floppy = images/f11-64/ks.vfd | 629 floppy = images/f11-64/floppy.img |
| 784 cdrom_unattended = images/f11-64/ks.iso | |
| 785 | 630 |
| 786 - 12.32: | 631 - 12.32: |
| 787 image_name = f12-32 | 632 image_name = f12-32 |
| 788 cdrom_cd1 = linux/Fedora-12-i386-DVD.iso | 633 cdrom_cd1 = linux/Fedora-12-i386-DVD.iso |
| 789 md5sum = 2c4c1c0d09f2fbcfd8ee6a0c5542eeb2 | 634 md5sum = 2c4c1c0d09f2fbcfd8ee6a0c5542eeb2 |
| 790 md5sum_1m = eee935d7f0cf2ef03f6ddce3a2a50050 | 635 md5sum_1m = eee935d7f0cf2ef03f6ddce3a2a50050 |
| 791 unattended_install.cdrom: | 636 unattended_install.cdrom: |
| 792 unattended_file = unattended/Fedora-12.ks | 637 unattended_file = unattended/Fedora-12.ks |
| 793 tftp = images/f12-32/tftpboot | 638 tftp = images/f12-32/tftpboot |
| 794 #floppy = images/f12-32/ks.vfd | 639 floppy = images/f12-32/floppy.img |
| 795 cdrom_unattended = images/f12-32/ks.iso | |
| 796 | 640 |
| 797 - 12.64: | 641 - 12.64: |
| 798 image_name = f12-64 | 642 image_name = f12-64 |
| 799 cdrom_cd1 = linux/Fedora-12-x86_64-DVD.iso | 643 cdrom_cd1 = linux/Fedora-12-x86_64-DVD.iso |
| 800 md5sum = 6dd31e292cc2eb1140544e9b1ba61c56 | 644 md5sum = 6dd31e292cc2eb1140544e9b1ba61c56 |
| 801 md5sum_1m = 514efbd7698b55ff6768c8605438bfc5 | 645 md5sum_1m = 514efbd7698b55ff6768c8605438bfc5 |
| 802 unattended_install.cdrom: | 646 unattended_install.cdrom: |
| 803 unattended_file = unattended/Fedora-12.ks | 647 unattended_file = unattended/Fedora-12.ks |
| 804 tftp = images/f12-64/tftpboot | 648 tftp = images/f12-64/tftpboot |
| 805 #floppy = images/f12-64/ks.vfd | 649 floppy = images/f12-64/floppy.img |
| 806 cdrom_unattended = images/f12-64/ks.iso | |
| 807 | 650 |
| 808 - 13.32: | 651 - 13.32: |
| 809 image_name = f13-32 | 652 image_name = f13-32 |
| 810 cdrom_cd1 = linux/Fedora-13-i386-DVD.iso | 653 cdrom_cd1 = linux/Fedora-13-i386-DVD.iso |
| 811 md5sum = 212fec517c2629b4b5eaf3662ac13136 | 654 md5sum = 212fec517c2629b4b5eaf3662ac13136 |
| 812 md5sum_1m = 4e1578a6ed5a6e7cd03b8fb074030746 | 655 md5sum_1m = 4e1578a6ed5a6e7cd03b8fb074030746 |
| 813 unattended_install.cdrom: | 656 unattended_install: |
| 814 unattended_file = unattended/Fedora-13.ks | 657 unattended_file = unattended/Fedora-13.ks |
| 815 tftp = images/f13-32/tftpboot | 658 tftp = images/f13-32/tftpboot |
| 816 #floppy = images/f13-32/ks.vfd | 659 floppy = images/f13-32/floppy.img |
| 817 cdrom_unattended = images/f13-32/ks.iso | |
| 818 | 660 |
| 819 - 13.64: | 661 - 13.64: |
| 820 image_name = f13-64 | 662 image_name = f13-64 |
| 821 cdrom_cd1 = linux/Fedora-13-x86_64-DVD.iso | 663 cdrom_cd1 = linux/Fedora-13-x86_64-DVD.iso |
| 822 md5sum = 6fbae6379cf27f36e1f2c7827ba7dc35 | 664 md5sum = 6fbae6379cf27f36e1f2c7827ba7dc35 |
| 823 md5sum_1m = 68821b9de4d3b5975d6634334e7f47a6 | 665 md5sum_1m = 68821b9de4d3b5975d6634334e7f47a6 |
| 824 unattended_install.cdrom: | 666 unattended_install: |
| 825 unattended_file = unattended/Fedora-13.ks | 667 unattended_file = unattended/Fedora-13.ks |
| 826 tftp = images/f13-64/tftpboot | 668 tftp = images/f13-64/tftpboot |
| 827 #floppy = images/f13-64/ks.vfd | 669 floppy = images/f13-64/floppy.img |
| 828 cdrom_unattended = images/f13-64/ks.iso | |
| 829 | 670 |
| 830 | 671 |
| 831 - DSL-4.2.5: | 672 - DSL-4.2.5: |
| 832 no setup dbench bonnie linux_s3 | 673 no setup dbench bonnie linux_s3 |
| 833 image_name = dsl-4.2.5 | 674 image_name = dsl-4.2.5 |
| 834 install: | 675 install: |
| 835 steps = DSL-4.2.5.steps | 676 steps = DSL-4.2.5.steps |
| 836 cdrom_cd1 = linux/dsl-4.2.5.iso | 677 cdrom_cd1 = linux/dsl-4.2.5.iso |
| 837 md5sum = 61694888aede3e01229865b8e6acd4a1 | 678 md5sum = 61694888aede3e01229865b8e6acd4a1 |
| 838 md5sum_1m = 527f2481bd25310f2e3a6e5345ff3d12 | 679 md5sum_1m = 527f2481bd25310f2e3a6e5345ff3d12 |
| 839 | 680 |
| 840 - Mandriva-One-2007: | 681 - Mandriva-One-2007: |
| 841 only install | 682 only install |
| 842 image_name = mandriva-one-2007 | 683 image_name = mandriva-one-2007 |
| 843 steps = Mandriva-One-2007-32.steps | 684 steps = Mandriva-One-2007-32.steps |
| 844 cdrom_cd1 = linux/mandriva-one-2007-i386.iso | 685 cdrom_cd1 = linux/mandriva-one-2007-i386.iso |
| 845 md5sum = 7e9e183dc11b9d39f480238e4e12bb05 | 686 md5sum = 7e9e183dc11b9d39f480238e4e12bb05 |
| 846 md5sum_1m = dc7865a75db665efc86d59bca7c1fe07 | 687 md5sum_1m = dc7865a75db665efc86d59bca7c1fe07 |
| 847 | 688 |
| 848 - OpenSUSE: | 689 - OpenSUSE: |
| 849 no setup | 690 no setup |
| 850 shell_prompt = ".*:.*\s#" | 691 shell_prompt = ".*:.*\s#" |
| 851 unattended_install.cdrom: | 692 unattended_install.cdrom: |
| 852 pxe_image = "linux" | 693 pxe_image = "linux" |
| 853 pxe_initrd = "initrd" | 694 pxe_initrd = "initrd" |
| 854 tftp = "images/tftpboot" | 695 tftp = "images/tftpboot" |
| 855 bootp = "/pxelinux.0" | 696 bootp = "/pxelinux.0" |
| 856 extra_params += " -boot cn" | 697 extra_params += " -boot cn" |
| 857 # You have to use autoyast=floppy if you want to use floppie
s to | 698 kernel_args = "autoyast=floppy console=ttyS0,115200 console=
tty0" |
| 858 # hold your autoyast file | |
| 859 #kernel_args = "autoyast=floppy console=ttyS0,115200 console
=tty0" | |
| 860 kernel_args = "autoyast=cdrom console=ttyS0,115200 console=t
ty0" | |
| 861 post_install_delay = 10 | 699 post_install_delay = 10 |
| 862 | 700 |
| 863 variants: | 701 variants: |
| 864 - 11.0.32: | 702 - 11.0.32: |
| 865 image_name = openSUSE-11.0-32 | 703 image_name = openSUSE-11.0-32 |
| 866 cdrom_cd1 = linux/openSUSE-11.0-DVD-i386.iso | 704 cdrom_cd1 = linux/openSUSE-11.0-DVD-i386.iso |
| 867 md5sum = ed6a5b3feb668866df812b1c2aed9d7f | 705 md5sum = ed6a5b3feb668866df812b1c2aed9d7f |
| 868 md5sum_1m = c720b30557af758e69de450409516369 | 706 md5sum_1m = c720b30557af758e69de450409516369 |
| 869 install: | 707 install: |
| 870 steps = openSUSE-11.0-32.steps | 708 steps = openSUSE-11.0-32.steps |
| 871 unattended_install.cdrom: | 709 unattended_install.cdrom: |
| 872 unattended_file = unattended/OpenSUSE-11.xml | 710 unattended_file = unattended/OpenSUSE-11.xml |
| 873 tftp = images/opensuse-11-0-32/tftpboot | 711 tftp = images/opensuse-11-0-32/tftpboot |
| 874 floppy = images/opensuse-11-0-32/floppy.img | 712 floppy = images/opensuse-11-0-32/floppy.img |
| 875 pxe_dir = boot/i386/loader | 713 pxe_dir = boot/i386/loader |
| 876 | 714 |
| 877 - 11.0.64: | 715 - 11.0.64: |
| 878 image_name = openSUSE-11.0-64 | 716 image_name = openSUSE-11.0-64 |
| 879 cdrom_cd1 = linux/openSUSE-11.0-DVD-x86_64.iso | 717 cdrom_cd1 = linux/openSUSE-11.0-DVD-x86_64.iso |
| 880 md5sum = 512c8346b0f8eb35f28c4eb96454d391 | 718 md5sum = 512c8346b0f8eb35f28c4eb96454d391 |
| 881 md5sum_1m = 661aa4cd031df2f25ea0102318a3f4d1 | 719 md5sum_1m = 661aa4cd031df2f25ea0102318a3f4d1 |
| 882 unattended_install.cdrom: | 720 unattended_install.cdrom: |
| 883 unattended_file = unattended/OpenSUSE-11.xml | 721 unattended_file = unattended/OpenSUSE-11.xml |
| 884 tftp = images/opensuse-11-0-64/tftpboot | 722 tftp = images/opensuse-11-0-64/tftpboot |
| 885 #floppy = images/opensuse-11-0-64/autoyast.vfd | 723 floppy = images/opensuse-11-0-64/floppy.img |
| 886 cdrom_unattended = images/opensuse-11-0-64/autoyast.
iso | |
| 887 pxe_dir = boot/x86_64/loader | 724 pxe_dir = boot/x86_64/loader |
| 888 | 725 |
| 889 - 11.1.32: | 726 - 11.1.32: |
| 890 image_name = openSUSE-11.1-32 | 727 image_name = openSUSE-11.1-32 |
| 891 cdrom_cd1 = linux/openSUSE-11.1-DVD-i586.iso | 728 cdrom_cd1 = linux/openSUSE-11.1-DVD-i586.iso |
| 892 md5sum = 8f51b278c0415be28c5699e465444bd3 | 729 md5sum = 8f51b278c0415be28c5699e465444bd3 |
| 893 md5sum_1m = b70217417468389083429f81ba7ce2bd | 730 md5sum_1m = b70217417468389083429f81ba7ce2bd |
| 894 install: | 731 install: |
| 895 steps=openSUSE-11.1-32-and-64.steps | 732 steps=openSUSE-11.1-32-and-64.steps |
| 896 unattended_install.cdrom: | 733 unattended_install.cdrom: |
| 897 unattended_file = unattended/OpenSUSE-11.xml | 734 unattended_file = unattended/OpenSUSE-11.xml |
| 898 tftp = images/opensuse-11-1-32/tftpboot | 735 tftp = images/opensuse-11-1-32/tftpboot |
| 899 #floppy = images/opensuse-11-1-32/autoyast.vfd | 736 floppy = images/opensuse-11-1-32/floppy.img |
| 900 cdrom_unattended = images/opensuse-11-1-32/autoyast.
iso | |
| 901 pxe_dir = boot/i386/loader | 737 pxe_dir = boot/i386/loader |
| 902 | 738 |
| 903 - 11.1.64: | 739 - 11.1.64: |
| 904 image_name = openSUSE-11.1-64 | 740 image_name = openSUSE-11.1-64 |
| 905 cdrom_cd1 = linux/openSUSE-11.1-DVD-x86_64.iso | 741 cdrom_cd1 = linux/openSUSE-11.1-DVD-x86_64.iso |
| 906 md5sum = 2afee1b8a87175e6dee2b8dbbd1ad8e8 | 742 md5sum = 2afee1b8a87175e6dee2b8dbbd1ad8e8 |
| 907 md5sum_1m = 768ca32503ef92c28f2d144f2a87e4d0 | 743 md5sum_1m = 768ca32503ef92c28f2d144f2a87e4d0 |
| 908 install: | 744 install: |
| 909 steps=openSUSE-11.1-32-and-64.steps | 745 steps=openSUSE-11.1-32-and-64.steps |
| 910 unattended_install.cdrom: | 746 unattended_install.cdrom: |
| 911 unattended_file = unattended/OpenSUSE-11.xml | 747 unattended_file = unattended/OpenSUSE-11.xml |
| 912 tftp = images/opensuse-11-1-64/tftpboot | 748 tftp = images/opensuse-11-1-64/tftpboot |
| 913 #floppy = images/opensuse-11-1-64/autoyast.vfd | 749 floppy = images/opensuse-11-1-64/floppy.img |
| 914 cdrom_unattended = images/opensuse-11-1-64/autoyast.
iso | |
| 915 pxe_dir = boot/x86_64/loader | 750 pxe_dir = boot/x86_64/loader |
| 916 | 751 |
| 917 - 11.2.32: | 752 - 11.2.32: |
| 918 image_name = openSUSE-11.2-32 | 753 image_name = openSUSE-11.2-32 |
| 919 cdrom_cd1 = linux/openSUSE-11.2-DVD-i586.iso | 754 cdrom_cd1 = linux/openSUSE-11.2-DVD-i586.iso |
| 920 md5sum = 295d713314a30ad017948f0d542c6d92 | 755 md5sum = 295d713314a30ad017948f0d542c6d92 |
| 921 md5sum_1m = 1f8767d00acb492be5a5627c834e543f | 756 md5sum_1m = 1f8767d00acb492be5a5627c834e543f |
| 922 unattended_install.cdrom: | 757 unattended_install.cdrom: |
| 923 unattended_file = unattended/OpenSUSE-11.xml | 758 unattended_file = unattended/OpenSUSE-11.xml |
| 924 tftp = images/opensuse-11-2-32/tftpboot | 759 tftp = images/opensuse-11-2-32/tftpboot |
| 925 #floppy = images/opensuse-11-2-32/autoyast.vfd | 760 floppy = images/opensuse-11-2-32/floppy.img |
| 926 cdrom_unattended = images/opensuse-11-2-32/autoyast.
iso | |
| 927 pxe_dir = boot/i386/loader | 761 pxe_dir = boot/i386/loader |
| 928 | 762 |
| 929 - 11.2.64: | 763 - 11.2.64: |
| 930 image_name = openSUSE-11.2-64 | 764 image_name = openSUSE-11.2-64 |
| 931 cdrom_cd1 = linux/openSUSE-11.2-DVD-x86_64.iso | 765 cdrom_cd1 = linux/openSUSE-11.2-DVD-x86_64.iso |
| 932 md5sum = 6a09295e34dc030319d040f67f4742c6 | 766 md5sum = 6a09295e34dc030319d040f67f4742c6 |
| 933 md5sum_1m = 11fd11d39744450b898f04c371dde2e7 | 767 md5sum_1m = 11fd11d39744450b898f04c371dde2e7 |
| 934 unattended_install.cdrom: | 768 unattended_install.cdrom: |
| 935 unattended_file = unattended/OpenSUSE-11.xml | 769 unattended_file = unattended/OpenSUSE-11.xml |
| 936 tftp = images/opensuse-11-2-64/tftpboot | 770 tftp = images/opensuse-11-2-64/tftpboot |
| 937 #floppy = images/opensuse11-2-64/autoyast.vfd | 771 floppy = images/opensuse11-2-64/floppy.img |
| 938 cdrom_unattended = images/opensuse11-2-64/autoyast.i
so | |
| 939 pxe_dir = boot/x86_64/loader | 772 pxe_dir = boot/x86_64/loader |
| 940 | 773 |
| 941 - 11.3.32: | 774 - 11.3.32: |
| 942 image_name = openSUSE-11.3-32 | 775 image_name = openSUSE-11.3-32 |
| 943 cdrom_cd1 = linux/openSUSE-11.3-DVD-i586.iso | 776 cdrom_cd1 = linux/openSUSE-11.3-DVD-i586.iso |
| 944 md5sum = 1a1da28c84e3cdad750d5cfa21c4fd17 | 777 md5sum = 1a1da28c84e3cdad750d5cfa21c4fd17 |
| 945 md5sum_1m = 4dd26906ce6cb3946519cb0b0de4b0f8 | 778 md5sum_1m = 4dd26906ce6cb3946519cb0b0de4b0f8 |
| 946 unattended_install.cdrom: | 779 unattended_install.cdrom: |
| 947 unattended_file = unattended/OpenSUSE-11.xml | 780 unattended_file = unattended/OpenSUSE-11.xml |
| 948 tftp = images/opensuse-11-3-32/tftpboot | 781 tftp = images/opensuse-11-3-32/tftpboot |
| 949 #floppy = images/opensuse-11-3-32/autoyast.vfd | 782 floppy = images/opensuse-11-3-32/floppy.img |
| 950 cdrom_unattended = images/opensuse-11-3-32/autoyast.
iso | |
| 951 pxe_dir = boot/i386/loader | 783 pxe_dir = boot/i386/loader |
| 952 | 784 |
| 953 - 11.3.64: | 785 - 11.3.64: |
| 954 image_name = openSUSE-11.3-64 | 786 image_name = openSUSE-11.3-64 |
| 955 cdrom_cd1 = linux/openSUSE-11.3-DVD-x86_64.iso | 787 cdrom_cd1 = linux/openSUSE-11.3-DVD-x86_64.iso |
| 956 md5sum = adf5d2a0a03c1e3aaf102fd6a4771b87 | 788 md5sum = adf5d2a0a03c1e3aaf102fd6a4771b87 |
| 957 md5sum_1m = e0dd12dac30d296417256775e1234c6e | 789 md5sum_1m = e0dd12dac30d296417256775e1234c6e |
| 958 unattended_install.cdrom: | 790 unattended_install.cdrom: |
| 959 unattended_file = unattended/OpenSUSE-11.xml | 791 unattended_file = unattended/OpenSUSE-11.xml |
| 960 tftp = images/opensuse-11-3-64/tftpboot | 792 tftp = images/opensuse-11-3-64/tftpboot |
| 961 #floppy = images/opensuse-11-3-64/autoyast.vfd | 793 floppy = images/opensuse-11-3-64/floppy.img |
| 962 cdrom_unattended = images/opensuse-11-3-64/autoyast.
iso | |
| 963 pxe_dir = boot/x86_64/loader | 794 pxe_dir = boot/x86_64/loader |
| 964 | 795 |
| 965 - SLES: | 796 - SLES: |
| 966 shell_prompt = "^root@.*[\#\$]\s*$|#" | 797 shell_prompt = "^root@.*[\#\$]\s*$|#" |
| 967 unattended_install.cdrom: | 798 unattended_install.cdrom: |
| 968 pxe_image = "linux" | 799 pxe_image = "linux" |
| 969 pxe_initrd = "initrd" | 800 pxe_initrd = "initrd" |
| 970 bootp = "/pxelinux.0" | 801 bootp = "/pxelinux.0" |
| 971 extra_params += " -boot cn" | 802 extra_params += " -boot cn" |
| 972 # You have to use autoyast=floppy if you want to use floppie
s to | 803 kernel_args = "autoyast=floppy console=ttyS0,115200 console=
tty0" |
| 973 # hold your autoyast file | |
| 974 #kernel_args = "autoyast=floppy console=ttyS0,115200 console
=tty0" | |
| 975 kernel_args = "autoyast=cdrom console=ttyS0,115200 console=t
ty0" | |
| 976 post_install_delay = 10 | 804 post_install_delay = 10 |
| 977 | 805 |
| 978 variants: | 806 variants: |
| 979 - 11.0.32: | 807 - 11.0.32: |
| 980 image_name = sles11-32 | 808 image_name = sles11-32 |
| 981 cdrom_cd1 = linux/SLES-11-DVD-i586-GM-DVD1.iso | 809 cdrom_cd1 = linux/SLES-11-DVD-i586-GM-DVD1.iso |
| 982 md5sum = 4958d4dde2575666355c8a1c5858bab0 | 810 md5sum = 4958d4dde2575666355c8a1c5858bab0 |
| 983 md5sum_1m = 1f19d4eff5bcead2a3e5b8b4212b6796 | 811 md5sum_1m = 1f19d4eff5bcead2a3e5b8b4212b6796 |
| 984 unattended_install.cdrom: | 812 unattended_install.cdrom: |
| 985 unattended_file = unattended/SLES-11.xml | 813 unattended_file = unattended/SLES-11.xml |
| 986 tftp = images/sles-11-0-32/tftpboot | 814 tftp = "images/sles-11-0-32/tftpboot" |
| 987 #floppy = images/sles-11-0-32/autoyast.vfd | 815 floppy = "images/sles-11-0-32/floppy.img" |
| 988 cdrom_unattended = images/sles-11-0-32/autoyast.iso | 816 pxe_dir = "boot/i386/loader" |
| 989 pxe_dir = boot/i386/loader | |
| 990 | 817 |
| 991 - 11.0.64: | 818 - 11.0.64: |
| 992 image_name = sles11-64 | 819 image_name = sles11-64 |
| 993 cdrom_cd1 = linux/SLES-11-DVD-x86_64-GM-DVD1.iso | 820 cdrom_cd1 = linux/SLES-11-DVD-x86_64-GM-DVD1.iso |
| 994 md5sum = 50a2bd45cd12c3808c3ee48208e2586b | 821 md5sum = 50a2bd45cd12c3808c3ee48208e2586b |
| 995 md5sum_1m = 00000951cab7c32e332362fc424c1054 | 822 md5sum_1m = 00000951cab7c32e332362fc424c1054 |
| 996 unattended_install.cdrom: | 823 unattended_install.cdrom: |
| 997 unattended_file = unattended/SLES-11.xml | 824 unattended_file = unattended/SLES-11.xml |
| 998 tftp = images/sles-11-0-64/tftpboot | 825 tftp = "images/sles-11-0-64/tftpboot" |
| 999 #floppy = images/sles-11-0-64/autoyast.vfd | 826 floppy = "images/sles-11-0-64/floppy.img" |
| 1000 cdrom_unattended = images/sles-11-0-64/autoyast.iso | 827 pxe_dir = "boot/x86_64/loader" |
| 1001 pxe_dir = boot/x86_64/loader | |
| 1002 | 828 |
| 1003 - 11.1.32: | 829 - 11.1.32: |
| 1004 image_name = sles11sp1-32 | 830 image_name = sles11sp1-32 |
| 1005 cdrom_cd1 = linux/SLES-11-SP1-DVD-i586-GM-DVD1.iso | 831 cdrom_cd1 = linux/SLES-11-SP1-DVD-i586-GM-DVD1.iso |
| 1006 md5sum = 0dd6886858d93501c38854552b9b1b0d | 832 md5sum = 0dd6886858d93501c38854552b9b1b0d |
| 1007 md5sum_1m = a626a3d50813410e3ac42794e05773bb | 833 md5sum_1m = a626a3d50813410e3ac42794e05773bb |
| 1008 unattended_install: | 834 unattended_install: |
| 1009 unattended_file = unattended/SLES-11.xml | 835 unattended_file = unattended/SLES-11.xml |
| 1010 tftp = images/sles-11-1-32/tftpboot | 836 tftp = "images/sles-11-1-32/tftpboot" |
| 1011 #floppy = images/sles-11-1-32/autoyast.vfd | 837 floppy = "images/sles-11-1-32/floppy.img" |
| 1012 cdrom_unattended = images/sles-11-1-32/autoyast.iso | 838 pxe_dir = "boot/i386/loader" |
| 1013 pxe_dir = boot/i386/loader | |
| 1014 | 839 |
| 1015 - 11.1.64: | 840 - 11.1.64: |
| 1016 image_name = sles11sp1-64 | 841 image_name = sles11sp1-64 |
| 1017 cdrom_cd1 = linux/SLES-11-SP1-DVD-x86_64-GM-DVD1.iso | 842 cdrom_cd1 = linux/SLES-11-SP1-DVD-x86_64-GM-DVD1.iso |
| 1018 md5sum = d2e10420f3689faa49a004b60fb396b7 | 843 md5sum = d2e10420f3689faa49a004b60fb396b7 |
| 1019 md5sum_1m = f7f67b5da46923a9f01da8a2b6909654 | 844 md5sum_1m = f7f67b5da46923a9f01da8a2b6909654 |
| 1020 unattended_install: | 845 unattended_install: |
| 1021 unattended_file = unattended/SLES-11.xml | 846 unattended_file = unattended/SLES-11.xml |
| 1022 tftp = images/sles-11-1-64/tftpboot | 847 tftp = "images/sles-11-1-64/tftpboot" |
| 1023 #floppy = images/sles-11-1-64/autoyast.vfd | 848 floppy = "images/sles-11-1-64/floppy.img" |
| 1024 cdrom_unattended = images/sles-11-1-64/autoyast.iso | 849 pxe_dir = "boot/x86_64/loader" |
| 1025 pxe_dir = boot/x86_64/loader | |
| 1026 | 850 |
| 1027 - @Ubuntu: | 851 - @Ubuntu: |
| 1028 shell_prompt = "^root@.*[\#\$]\s*$" | 852 shell_prompt = "^root@.*[\#\$]\s*$" |
| 1029 | 853 |
| 1030 variants: | 854 variants: |
| 1031 - Ubuntu-6.10-32: | 855 - Ubuntu-6.10-32: |
| 1032 only install | 856 only install |
| 1033 image_name = ubuntu-6.10-32 | 857 image_name = ubuntu-6.10-32 |
| 1034 steps = Ubuntu-6.10-32.steps | 858 steps = Ubuntu-6.10-32.steps |
| 1035 cdrom_cd1 = linux/ubuntu-6.10-desktop-i386.iso | 859 cdrom_cd1 = linux/ubuntu-6.10-desktop-i386.iso |
| (...skipping 26 matching lines...) Expand all Loading... |
| 1062 modprobe_module = acpiphp | 886 modprobe_module = acpiphp |
| 1063 block_hotplug: | 887 block_hotplug: |
| 1064 modprobe_module = acpiphp | 888 modprobe_module = acpiphp |
| 1065 unattended_install.cdrom: | 889 unattended_install.cdrom: |
| 1066 pxe_dir = "images/pxeboot" | 890 pxe_dir = "images/pxeboot" |
| 1067 pxe_image = "vmlinuz" | 891 pxe_image = "vmlinuz" |
| 1068 pxe_initrd = "initrd.img" | 892 pxe_initrd = "initrd.img" |
| 1069 tftp = "images/tftpboot" | 893 tftp = "images/tftpboot" |
| 1070 bootp = "/pxelinux.0" | 894 bootp = "/pxelinux.0" |
| 1071 extra_params += " -boot cn" | 895 extra_params += " -boot cn" |
| 1072 # You have to use ks=floppy if you want to use floppies to | 896 kernel_args = "ks=floppy nicdelay=60 console=ttyS0,115200 co
nsole=tty0" |
| 1073 # hold your kickstart file | |
| 1074 #kernel_args = "ks=floppy nicdelay=60 console=ttyS0,115200 c
onsole=tty0" | |
| 1075 kernel_args = "ks=cdrom nicdelay=60 console=ttyS0,115200 con
sole=tty0" | |
| 1076 | 897 |
| 1077 variants: | 898 variants: |
| 1078 - 3.9.i386: | 899 - 3.9.i386: |
| 1079 no setup autotest linux_s3 guest_s4 shutdown | 900 no setup autotest linux_s3 guest_s4 shutdown |
| 1080 image_name = rhel3-32 | 901 image_name = rhel3-32 |
| 1081 mem_chk_cmd = dmidecode | awk -F: '/Maximum Capacity/ {p
rint $2}' | 902 mem_chk_cmd = dmidecode | awk -F: '/Maximum Capacity/ {p
rint $2}' |
| 1082 cdrom_cd1 = linux/RHEL-3.9-i386-DVD.iso | 903 cdrom_cd1 = linux/RHEL-3.9-i386-DVD.iso |
| 1083 md5sum = ddd11a1cb104119039b0fa05df6d52b8 | 904 md5sum = ddd11a1cb104119039b0fa05df6d52b8 |
| 1084 md5sum_1m = 5f10c9417c7b8372b3456c1b5f3f9ed0 | 905 md5sum_1m = 5f10c9417c7b8372b3456c1b5f3f9ed0 |
| 1085 install: | 906 install: |
| 1086 steps=RHEL-3.9-i386.steps | 907 steps=RHEL-3.9-i386.steps |
| 1087 unattended_install.cdrom: | 908 unattended_install.cdrom: |
| 1088 unattended_file = unattended/RHEL-3-series.ks | 909 unattended_file = unattended/RHEL-3-series.ks |
| 1089 tftp = images/rhel39-32/tftpboot | 910 tftp = images/rhel39-32/tftpboot |
| 1090 #floppy = images/rhel39-32/ks.vfd | 911 floppy = images/rhel39-32/floppy.img |
| 1091 cdrom_unattended = images/rhel39-32/ks.iso | |
| 1092 | 912 |
| 1093 - 3.9.x86_64: | 913 - 3.9.x86_64: |
| 1094 no setup autotest linux_s3 guest_s4 shutdown | 914 no setup autotest linux_s3 guest_s4 shutdown |
| 1095 image_name = rhel3-64 | 915 image_name = rhel3-64 |
| 1096 mem_chk_cmd = dmidecode | awk -F: '/Maximum Capacity/ {p
rint $2}' | 916 mem_chk_cmd = dmidecode | awk -F: '/Maximum Capacity/ {p
rint $2}' |
| 1097 cdrom_cd1 = linux/RHEL-3.9-x86_64-DVD.iso | 917 cdrom_cd1 = linux/RHEL-3.9-x86_64-DVD.iso |
| 1098 md5sum = bf4635e4a4bd3b43838e72bc8c329d55 | 918 md5sum = bf4635e4a4bd3b43838e72bc8c329d55 |
| 1099 md5sum_1m = 18ecd37b639109f1b2af05cfb57dfeaf | 919 md5sum_1m = 18ecd37b639109f1b2af05cfb57dfeaf |
| 1100 install: | 920 install: |
| 1101 steps=RHEL-3.9-x86_64.steps | 921 steps=RHEL-3.9-x86_64.steps |
| 1102 unattended_install.cdrom: | 922 unattended_install.cdrom: |
| 1103 unattended_file = unattended/RHEL-3-series.ks | 923 unattended_file = unattended/RHEL-3-series.ks |
| 1104 tftp = images/rhel39-64/tftpboot | 924 tftp = images/rhel39-64/tftpboot |
| 1105 #floppy = images/rhel39-64/ks.vfd | 925 floppy = images/rhel39-64/floppy.img |
| 1106 cdrom_unattended = images/rhel39-64/ks.iso | |
| 1107 | 926 |
| 1108 - 4.7.i386: | 927 - 4.7.i386: |
| 1109 no setup autotest | 928 no setup autotest |
| 1110 image_name = rhel4-32 | 929 image_name = rhel4-32 |
| 1111 cdrom_cd1 = linux/RHEL-4.7-i386-DVD.iso | 930 cdrom_cd1 = linux/RHEL-4.7-i386-DVD.iso |
| 1112 md5sum = ee5092653732a88ddbaf8eef2484c500 | 931 md5sum = ee5092653732a88ddbaf8eef2484c500 |
| 1113 md5sum_1m = 127081cbed825d7232331a2083975528 | 932 md5sum_1m = 127081cbed825d7232331a2083975528 |
| 1114 install: | 933 install: |
| 1115 steps = RHEL-4.7-i386.steps | 934 steps = RHEL-4.7-i386.steps |
| 1116 unattended_install.cdrom: | 935 unattended_install.cdrom: |
| 1117 unattended_file = unattended/RHEL-4-series.ks | 936 unattended_file = unattended/RHEL-4-series.ks |
| 1118 tftp = images/rhel47-32/tftpboot | 937 tftp = images/rhel47-32/tftpboot |
| 1119 #floppy = images/rhel47-32/ks.vfd | 938 floppy = images/rhel47-32/floppy.img |
| 1120 cdrom_unattended = images/rhel47-32/ks.iso | |
| 1121 | 939 |
| 1122 - 4.7.x86_64: | 940 - 4.7.x86_64: |
| 1123 no setup autotest | 941 no setup autotest |
| 1124 image_name = rhel4-64 | 942 image_name = rhel4-64 |
| 1125 cdrom_cd1 = linux/RHEL-4.7-x86_64-DVD.iso | 943 cdrom_cd1 = linux/RHEL-4.7-x86_64-DVD.iso |
| 1126 md5sum = ea9dae16dd86f7d94092d0e672333292 | 944 md5sum = ea9dae16dd86f7d94092d0e672333292 |
| 1127 md5sum_1m = 58fa63eaee68e269f4cb1d2edf479792 | 945 md5sum_1m = 58fa63eaee68e269f4cb1d2edf479792 |
| 1128 install: | 946 install: |
| 1129 steps = RHEL-4.7-x86_64.steps | 947 steps = RHEL-4.7-x86_64.steps |
| 1130 unattended_install.cdrom: | 948 unattended_install.cdrom: |
| 1131 unattended_file = unattended/RHEL-4-series.ks | 949 unattended_file = unattended/RHEL-4-series.ks |
| 1132 tftp = images/rhel47-64/tftpboot | 950 tftp = images/rhel47-64/tftpboot |
| 1133 #floppy = images/rhel47-64/ks.vfd | 951 floppy = images/rhel47-64/floppy.img |
| 1134 cdrom_unattended = images/rhel47-64/ks.iso | |
| 1135 | 952 |
| 1136 - 4.8.i386: | 953 - 4.8.i386: |
| 1137 no setup autotest | 954 no setup autotest |
| 1138 image_name = rhel4-32 | 955 image_name = rhel4-32 |
| 1139 cdrom_cd1 = linux/RHEL-4.8-i386-DVD.iso | 956 cdrom_cd1 = linux/RHEL-4.8-i386-DVD.iso |
| 1140 md5sum = b024f0af5079539d3ef51f71fed0b194 | 957 md5sum = b024f0af5079539d3ef51f71fed0b194 |
| 1141 md5sum_1m = 969c197402b9058f28a278c1f807d15b | 958 md5sum_1m = 969c197402b9058f28a278c1f807d15b |
| 1142 unattended_install.cdrom: | 959 unattended_install.cdrom: |
| 1143 unattended_file = unattended/RHEL-4-series.ks | 960 unattended_file = unattended/RHEL-4-series.ks |
| 1144 tftp = images/rhel48-32/tftpboot | 961 tftp = images/rhel48-32/tftpboot |
| 1145 #floppy = images/rhel48-32/ks.vfd | 962 floppy = images/rhel48-32/floppy.img |
| 1146 cdrom_unattended = images/rhel48-32/ks.iso | |
| 1147 | 963 |
| 1148 - 4.8.x86_64: | 964 - 4.8.x86_64: |
| 1149 no setup autotest | 965 no setup autotest |
| 1150 image_name = rhel4-64 | 966 image_name = rhel4-64 |
| 1151 cdrom_cd1 = linux/RHEL-4.8-x86_64-DVD.iso | 967 cdrom_cd1 = linux/RHEL-4.8-x86_64-DVD.iso |
| 1152 md5sum = 696bc877b0200cc942626673fcc3fc09 | 968 md5sum = 696bc877b0200cc942626673fcc3fc09 |
| 1153 md5sum_1m = b11ac0ef7fd345ad712966972db63886 | 969 md5sum_1m = b11ac0ef7fd345ad712966972db63886 |
| 1154 unattended_install.cdrom: | 970 unattended_install.cdrom: |
| 1155 unattended_file = unattended/RHEL-4-series.ks | 971 unattended_file = unattended/RHEL-4-series.ks |
| 1156 tftp = images/rhel48-64/tftpboot | 972 tftp = images/rhel48-64/tftpboot |
| 1157 #floppy = images/rhel48-64/ks.vfd | 973 floppy = images/rhel48-64/floppy.img |
| 1158 cdrom_unattended = images/rhel48-64/ks.iso | |
| 1159 | 974 |
| 1160 - 5.3.i386: | 975 - 5.3.i386: |
| 1161 no setup | 976 no setup |
| 1162 image_name = rhel5-32 | 977 image_name = rhel5-32 |
| 1163 cdrom_cd1 = linux/RHEL-5.3-i386-DVD.iso | 978 cdrom_cd1 = linux/RHEL-5.3-i386-DVD.iso |
| 1164 md5sum = 371c62851611fd32ead440df6f24a296 | 979 md5sum = 371c62851611fd32ead440df6f24a296 |
| 1165 md5sum_1m = 242318dd44152210f6ff6cdda1bfbf51 | 980 md5sum_1m = 242318dd44152210f6ff6cdda1bfbf51 |
| 1166 install: | 981 install: |
| 1167 steps = RHEL-5.3-i386.steps | 982 steps = RHEL-5.3-i386.steps |
| 1168 unattended_install.cdrom: | 983 unattended_install.cdrom: |
| 1169 unattended_file = unattended/RHEL-5-series.ks | 984 unattended_file = unattended/RHEL-5-series.ks |
| 1170 tftp = images/rhel53-32/tftpboot | 985 tftp = images/rhel53-32/tftpboot |
| 1171 #floppy = images/rhel53-32/ks.vfd | 986 floppy = images/rhel53-32/floppy.img |
| 1172 cdrom_unattended = images/rhel53-32/ks.iso | |
| 1173 | 987 |
| 1174 - 5.3.x86_64: | 988 - 5.3.x86_64: |
| 1175 no setup | 989 no setup |
| 1176 image_name = rhel5-64 | 990 image_name = rhel5-64 |
| 1177 cdrom_cd1 = linux/RHEL-5.3-x86_64-DVD.iso | 991 cdrom_cd1 = linux/RHEL-5.3-x86_64-DVD.iso |
| 1178 md5sum = c5ed6b284410f4d8212cafc78fd7a8c5 | 992 md5sum = c5ed6b284410f4d8212cafc78fd7a8c5 |
| 1179 md5sum_1m = b999f437583098ea5bbd56fb1de1d011 | 993 md5sum_1m = b999f437583098ea5bbd56fb1de1d011 |
| 1180 install: | 994 install: |
| 1181 steps=RHEL-5.3-x86_64.steps | 995 steps=RHEL-5.3-x86_64.steps |
| 1182 unattended_install.cdrom: | 996 unattended_install.cdrom: |
| 1183 unattended_file = unattended/RHEL-5-series.ks | 997 unattended_file = unattended/RHEL-5-series.ks |
| 1184 tftp = images/rhel53-64/tftpboot | 998 tftp = images/rhel53-64/tftpboot |
| 1185 #floppy = images/rhel53-64/ks.vfd | 999 floppy = images/rhel53-64/floppy.img |
| 1186 cdrom_unattended = images/rhel53-64/ks.iso | |
| 1187 | 1000 |
| 1188 - 5.4.i386: | 1001 - 5.4.i386: |
| 1189 no setup | 1002 no setup |
| 1190 image_name = rhel5-32 | 1003 image_name = rhel5-32 |
| 1191 cdrom_cd1 = linux/RHEL-5.4-i386-DVD.iso | 1004 cdrom_cd1 = linux/RHEL-5.4-i386-DVD.iso |
| 1192 md5sum = 7a12ec6599527e4f3d1790b51eadbfed | 1005 md5sum = 7a12ec6599527e4f3d1790b51eadbfed |
| 1193 md5sum_1m = 0dbeb8f58d213752d8c029e8601abfbb | 1006 md5sum_1m = 0dbeb8f58d213752d8c029e8601abfbb |
| 1194 unattended_install.cdrom: | 1007 unattended_install.cdrom: |
| 1195 unattended_file = unattended/RHEL-5-series.ks | 1008 unattended_file = unattended/RHEL-5-series.ks |
| 1196 tftp = images/rhel54-32/tftpboot | 1009 tftp = images/rhel54-32/tftpboot |
| 1197 #floppy = images/rhel54-32/ks.vfd | 1010 floppy = images/rhel54-32/floppy.img |
| 1198 cdrom_unattended = images/rhel54-32/ks.iso | |
| 1199 | 1011 |
| 1200 - 5.4.x86_64: | 1012 - 5.4.x86_64: |
| 1201 no setup | 1013 no setup |
| 1202 image_name = rhel5-64 | 1014 image_name = rhel5-64 |
| 1203 cdrom_cd1 = linux/RHEL-5.4-x86_64-DVD.iso | 1015 cdrom_cd1 = linux/RHEL-5.4-x86_64-DVD.iso |
| 1204 md5sum = 04fe3c10202402d7b389528d2bad0210 | 1016 md5sum = 04fe3c10202402d7b389528d2bad0210 |
| 1205 md5sum_1m = 3e74112003e88a966754849dbb8f5c3f | 1017 md5sum_1m = 3e74112003e88a966754849dbb8f5c3f |
| 1206 unattended_install.cdrom: | 1018 unattended_install.cdrom: |
| 1207 unattended_file = unattended/RHEL-5-series.ks | 1019 unattended_file = unattended/RHEL-5-series.ks |
| 1208 tftp = images/rhel54-64/tftpboot | 1020 tftp = images/rhel54-64/tftpboot |
| 1209 #floppy = images/rhel54-64/ks.vfd | 1021 floppy = images/rhel54-64/floppy.img |
| 1210 cdrom_unattended = images/rhel54-64/ks.iso | |
| 1211 | 1022 |
| 1212 - 5.5.i386: | 1023 - 5.5.i386: |
| 1213 no setup | 1024 no setup |
| 1214 image_name = rhel5-32 | 1025 image_name = rhel5-32 |
| 1215 cdrom_cd1 = linux/RHEL-5.5-i386-DVD.iso | 1026 cdrom_cd1 = linux/RHEL-5.5-i386-DVD.iso |
| 1216 md5sum = 148858b157f275d9153797efddfc83c3 | 1027 md5sum = 148858b157f275d9153797efddfc83c3 |
| 1217 md5sum_1m = 2502cc7ddb9d0684fe08c4a83d247902 | 1028 md5sum_1m = 2502cc7ddb9d0684fe08c4a83d247902 |
| 1218 unattended_install.cdrom: | 1029 unattended_install.cdrom: |
| 1219 unattended_file = unattended/RHEL-5-series.ks | 1030 unattended_file = unattended/RHEL-5-series.ks |
| 1220 tftp = images/rhel55-32/tftpboot | 1031 tftp = images/rhel55-32/tftpboot |
| 1221 #floppy = images/rhel55-32/ks.vfd | 1032 floppy = images/rhel55-32/floppy.img |
| 1222 cdrom_unattended = images/rhel55-32/ks.iso | |
| 1223 | 1033 |
| 1224 - 5.5.x86_64: | 1034 - 5.5.x86_64: |
| 1225 no setup | 1035 no setup |
| 1226 image_name = rhel5-64 | 1036 image_name = rhel5-64 |
| 1227 cdrom_cd1 = linux/RHEL-5.5-x86_64-DVD.iso | 1037 cdrom_cd1 = linux/RHEL-5.5-x86_64-DVD.iso |
| 1228 md5sum = f3119f883257ef9041234feda2f1cad0 | 1038 md5sum = f3119f883257ef9041234feda2f1cad0 |
| 1229 md5sum_1m = a744084a03f6a08627f71527fc107a1e | 1039 md5sum_1m = a744084a03f6a08627f71527fc107a1e |
| 1230 unattended_install.cdrom: | 1040 unattended_install.cdrom: |
| 1231 unattended_file = unattended/RHEL-5-series.ks | 1041 unattended_file = unattended/RHEL-5-series.ks |
| 1232 tftp = images/rhel55-64/tftpboot | 1042 tftp = images/rhel55-64/tftpboot |
| 1233 #floppy = images/rhel55-64/ks.vfd | 1043 floppy = images/rhel55-64/floppy.img |
| 1234 cdrom_unattended = images/rhel55-64/ks.iso | |
| 1235 | 1044 |
| 1236 | 1045 |
| 1237 # Windows section | 1046 # Windows section |
| 1238 - @Windows: | 1047 - @Windows: |
| 1239 no autotest linux_s3 vlan_tag ioquit unattended_install.(url|nfs|remote_
ks) | 1048 no autotest linux_s3 vlan_tag ioquit unattended_install.(url|nfs|remote_
ks) |
| 1240 shutdown_command = shutdown /s /f /t 0 | 1049 shutdown_command = shutdown /s /f /t 0 |
| 1241 reboot_command = shutdown /r /f /t 0 | 1050 reboot_command = shutdown /r /f /t 0 |
| 1242 status_test_command = echo %errorlevel% | 1051 status_test_command = echo %errorlevel% |
| 1243 shell_prompt = "^\w:\\.*>\s*$" | 1052 shell_prompt = "^\w:\\.*>\s*$" |
| 1244 username = Administrator | 1053 username = Administrator |
| (...skipping 10 matching lines...) Expand all Loading... |
| 1255 # This ISO will be used for all tests except install: | 1064 # This ISO will be used for all tests except install: |
| 1256 cdrom_cd1 = windows/winutils.iso | 1065 cdrom_cd1 = windows/winutils.iso |
| 1257 | 1066 |
| 1258 cpu_chk_cmd = echo %NUMBER_OF_PROCESSORS% | 1067 cpu_chk_cmd = echo %NUMBER_OF_PROCESSORS% |
| 1259 mem_chk_cmd = wmic memphysical | 1068 mem_chk_cmd = wmic memphysical |
| 1260 mem_chk_cur_cmd = wmic memphysical | 1069 mem_chk_cur_cmd = wmic memphysical |
| 1261 | 1070 |
| 1262 unattended_install.cdrom: | 1071 unattended_install.cdrom: |
| 1263 timeout = 7200 | 1072 timeout = 7200 |
| 1264 finish_program = deps/finish.exe | 1073 finish_program = deps/finish.exe |
| 1265 cdroms += " winutils" | 1074 cdroms += " winutilscd" |
| 1266 cdrom_winutils = windows/winutils.iso | 1075 cdrom_winutilscd = windows/winutils.iso |
| 1267 drive_index_winutils = 2 | 1076 drive_index_winutilscd = 2 |
| 1268 # Turn install_virtio = yes if you want to install the | |
| 1269 # Windows virtio drivers. It might be a lot of setup though :) | |
| 1270 #install_virtio = no | |
| 1271 #cdroms += " virtio" | |
| 1272 #cdrom_virtio = windows/virtio-win.iso | |
| 1273 #drive_index_virtio = 3 | |
| 1274 #virtio_floppy = /usr/share/virtio-win/virtio-drivers.vfd | |
| 1275 migrate: | 1077 migrate: |
| 1276 migration_test_command = ver && vol | 1078 migration_test_command = ver && vol |
| 1277 migration_bg_command = start ping -t localhost | 1079 migration_bg_command = start ping -t localhost |
| 1278 migration_bg_check_command = tasklist | find /I "ping.exe" | 1080 migration_bg_check_command = tasklist | find /I "ping.exe" |
| 1279 migration_bg_kill_command = taskkill /IM ping.exe /F | 1081 migration_bg_kill_command = taskkill /IM ping.exe /F |
| 1280 stress_boot: | 1082 stress_boot: |
| 1281 alive_test_cmd = systeminfo | 1083 alive_test_cmd = systeminfo |
| 1282 timedrift: | 1084 timedrift: |
| 1283 # Timedrift compensation on Windows with hpet does not happen | 1085 # Timedrift compensation on Windows with hpet does not happen |
| 1284 disable_hpet = yes | 1086 disable_hpet = yes |
| 1285 extra_params += " -rtc-td-hack" | 1087 extra_params += " -rtc-td-hack" |
| 1286 time_command = "echo TIME: %date% %time%" | 1088 time_command = "echo TIME: %date% %time%" |
| 1287 time_filter_re = "(?<=TIME: \w\w\w ).{19}(?=\.\d\d)" | 1089 time_filter_re = "(?<=TIME: \w\w\w ).{19}(?=\.\d\d)" |
| 1288 time_format = "%m/%d/%Y %H:%M:%S" | 1090 time_format = "%m/%d/%Y %H:%M:%S" |
| 1289 # For this to work, the cdrom at d: should contain vlc (d:\vlc\vlc.e
xe) and a video (d:\ED_1024.avi) | 1091 # For this to work, the cdrom at d: should contain vlc (d:\vlc\vlc.e
xe) and a video (d:\ED_1024.avi) |
| 1290 guest_load_command = 'cmd /c "d:\vlc\vlc -f --loop --no-qt-privacy-a
sk --no-qt-system-tray d:\ED_1024.avi"' | 1092 guest_load_command = 'cmd /c "d:\vlc\vlc -f --loop --no-qt-privacy-a
sk --no-qt-system-tray d:\ED_1024.avi"' |
| 1291 # Alternative guest load: | 1093 # Alternative guest load: |
| 1292 #guest_load_command = "(dir /s && dir /s && dir /s && dir /s) > nul" | 1094 #guest_load_command = "(dir /s && dir /s && dir /s && dir /s) > nul" |
| 1293 guest_load_stop_command = "taskkill /F /IM vlc.exe" | 1095 guest_load_stop_command = "taskkill /F /IM vlc.exe" |
| 1294 guest_load_instances = 2 | 1096 guest_load_instances = 2 |
| 1295 host_load_command = "bzip2 -c --best /dev/urandom > /dev/null" | 1097 host_load_command = "bzip2 -c --best /dev/urandom > /dev/null" |
| 1296 # Alternative host load: | 1098 # Alternative host load: |
| 1297 #host_load_command = "dd if=/dev/urandom of=/dev/null" | 1099 #host_load_command = "dd if=/dev/urandom of=/dev/null" |
| 1298 host_load_instances = 8 | 1100 host_load_instances = 8 |
| 1299 ntp: | |
| 1300 time_command = "w32tm /stripchart /samples:1 /computer:ns1.nay.r
edhat.com" | |
| 1301 time_filter_re = "\d+/\d+/\d+\s\d+:\d+:\d+ [AP]M" | |
| 1302 time_format = "%m/%d/%Y %H:%M:%S" | |
| 1303 date: | |
| 1304 time_command = "echo TIME: %date% %time%" | |
| 1305 time_filter_re = "(?<=TIME: \w\w\w ).{19}(?=\.\d\d)" | |
| 1306 time_format = "%m/%d/%Y %H:%M:%S" | |
| 1307 | |
| 1308 guest_s4: | 1101 guest_s4: |
| 1309 check_s4_support_cmd = powercfg /hibernate on | 1102 check_s4_support_cmd = powercfg /hibernate on |
| 1310 test_s4_cmd = start ping -t localhost | 1103 test_s4_cmd = start ping -t localhost |
| 1311 check_s4_cmd = tasklist | find /I "ping.exe" | 1104 check_s4_cmd = tasklist | find /I "ping.exe" |
| 1312 set_s4_cmd = rundll32.exe PowrProf.dll, SetSuspendState | 1105 set_s4_cmd = rundll32.exe PowrProf.dll, SetSuspendState |
| 1313 kill_test_s4_cmd = taskkill /IM ping.exe /F | 1106 kill_test_s4_cmd = taskkill /IM ping.exe /F |
| 1314 services_up_timeout = 30 | 1107 services_up_timeout = 30 |
| 1315 nic_hotplug: | 1108 nic_hotplug: |
| 1316 reference_cmd = ipconfig /all | 1109 reference_cmd = ipconfig /all |
| 1317 find_pci_cmd = ipconfig /all | find "Description" | 1110 find_pci_cmd = ipconfig /all | find "Description" |
| 1318 wait_secs_for_hook_up = 10 | 1111 wait_secs_for_hook_up = 10 |
| 1319 nic_e1000: | 1112 nic_e1000: |
| 1320 match_string = "Intel(R) PRO/1000 MT Network Connection" | 1113 match_string = "Intel(R) PRO/1000 MT Network Connection" |
| 1321 nic_virtio: | 1114 nic_virtio: |
| 1322 match_string = "VirtIO Ethernet" | 1115 match_string = "VirtIO Ethernet" |
| 1323 block_hotplug: | 1116 block_hotplug: |
| 1324 wait_secs_for_hook_up = 10 | 1117 wait_secs_for_hook_up = 10 |
| 1325 reference_cmd = wmic diskdrive list brief | 1118 reference_cmd = wmic diskdrive list brief |
| 1326 find_pci_cmd = wmic diskdrive list brief | 1119 find_pci_cmd = wmic diskdrive list brief |
| 1327 pci_test_cmd = echo select disk 1 > dt && echo online >> dt && echo
detail disk >> dt && echo exit >> dt && diskpart /s dt | 1120 pci_test_cmd = echo select disk 1 > dt && echo online >> dt && echo
detail disk >> dt && echo exit >> dt && diskpart /s dt |
| 1328 physical_resources_check: | 1121 physical_resources_check: |
| 1329 catch_uuid_cmd = | 1122 catch_uuid_cmd = |
| 1330 | 1123 |
| 1331 variants: | 1124 variants: |
| 1332 - Win2000: | 1125 - Win2000: |
| 1333 no reboot whql | 1126 no reboot |
| 1334 image_name = win2000-32 | 1127 image_name = win2000-32 |
| 1335 kill_vm_gracefully = no | 1128 kill_vm_gracefully = no |
| 1336 install: | 1129 install: |
| 1337 steps = Win2000-32.steps | 1130 steps = Win2000-32.steps |
| 1338 cdrom_cd1 = windows/Windows2000_sp4.iso | 1131 cdrom_cd1 = windows/Windows2000_sp4.iso |
| 1339 md5sum = dda6039f3a9173f0f6bfae40f5efdfea | 1132 md5sum = dda6039f3a9173f0f6bfae40f5efdfea |
| 1340 md5sum_1m = dd28fba196d366d56fe774bd93df5527 | 1133 md5sum_1m = dd28fba196d366d56fe774bd93df5527 |
| 1341 user = user | 1134 user = user |
| 1342 setup: | 1135 setup: |
| 1343 steps = Win2000-32-rss.steps | 1136 steps = Win2000-32-rss.steps |
| 1344 unattended_install.cdrom: | 1137 unattended_install.cdrom: |
| 1345 cdrom_cd1 = windows/Windows2000_sp4.iso | 1138 cdrom_cd1 = windows/Windows2000_sp4.iso |
| 1346 md5sum = dda6039f3a9173f0f6bfae40f5efdfea | 1139 md5sum = dda6039f3a9173f0f6bfae40f5efdfea |
| 1347 md5sum_1m = dd28fba196d366d56fe774bd93df5527 | 1140 md5sum_1m = dd28fba196d366d56fe774bd93df5527 |
| 1348 unattended_file = unattended/win2000-32.sif | 1141 unattended_file = unattended/win2000-32.sif |
| 1349 floppy = images/win2000-32/answer.vfd | 1142 floppy = images/win2000-32/floppy.img |
| 1350 | 1143 |
| 1351 - WinXP: | 1144 - WinXP: |
| 1352 image_name = winXP | 1145 image_name = winXP |
| 1353 variants: | 1146 variants: |
| 1354 - 32: | 1147 - 32: |
| 1355 image_name += -32 | 1148 image_name += -32 |
| 1356 install: | 1149 install: |
| 1357 cdrom_cd1 = windows/WindowsXP-sp2-vlk.iso | 1150 cdrom_cd1 = windows/WindowsXP-sp2-vlk.iso |
| 1358 md5sum = 743450644b1d9fe97b3cf379e22dceb0 | 1151 md5sum = 743450644b1d9fe97b3cf379e22dceb0 |
| 1359 md5sum_1m = b473bf75af2d1269fec8958cf0202bfd | 1152 md5sum_1m = b473bf75af2d1269fec8958cf0202bfd |
| 1360 user = user | 1153 user = user |
| 1361 steps = WinXP-32.steps | 1154 steps = WinXP-32.steps |
| 1362 setup: | 1155 setup: |
| 1363 steps = WinXP-32-rss.steps | 1156 steps = WinXP-32-rss.steps |
| 1364 unattended_install.cdrom: | 1157 unattended_install.cdrom: |
| 1365 cdrom_cd1 = windows/WindowsXP-sp2-vlk.iso | 1158 cdrom_cd1 = windows/WindowsXP-sp2-vlk.iso |
| 1366 md5sum = 743450644b1d9fe97b3cf379e22dceb0 | 1159 md5sum = 743450644b1d9fe97b3cf379e22dceb0 |
| 1367 md5sum_1m = b473bf75af2d1269fec8958cf0202bfd | 1160 md5sum_1m = b473bf75af2d1269fec8958cf0202bfd |
| 1368 unattended_file = unattended/winxp32.sif | 1161 unattended_file = unattended/winxp32.sif |
| 1369 floppy = images/winXP-32/answer.vfd | 1162 floppy = images/winXP-32/floppy.img |
| 1370 # Uncomment virtio_network_installer_path line if | |
| 1371 # you have an msi installer, also make sure the | |
| 1372 # paths are properly set in your virtio driver iso. | |
| 1373 virtio_oemsetup_id = WXP32 | |
| 1374 virtio_network_path = 'F:\NetKVM\xp\x86' | |
| 1375 #virtio_network_installer_path = 'F:\RHEV-Network32.
msi' | |
| 1376 whql_submission: | |
| 1377 desc_path_desc1 = $\WDK\Logo Type\Device Logo\Window
s XP | |
| 1378 desc_path_desc2 = $\WDK\Logo Type\Systems Logo\Windo
ws XP | |
| 1379 dd_data_logoarch = X86 | |
| 1380 dd_data_logoos = Windows XP | |
| 1381 dd_data_whqlos = Windows XP | |
| 1382 dd_data_whqlqual = Basic | |
| 1383 | 1163 |
| 1384 - 64: | 1164 - 64: |
| 1385 image_name += -64 | 1165 image_name += -64 |
| 1386 install: | 1166 install: |
| 1387 cdrom_cd1 = windows/WindowsXP-64.iso | 1167 cdrom_cd1 = windows/WindowsXP-64.iso |
| 1388 md5sum = 8d3f007ec9c2060cec8a50ee7d7dc512 | 1168 md5sum = 8d3f007ec9c2060cec8a50ee7d7dc512 |
| 1389 md5sum_1m = e812363ff427effc512b7801ee70e513 | 1169 md5sum_1m = e812363ff427effc512b7801ee70e513 |
| 1390 user = user | 1170 user = user |
| 1391 steps = WinXP-64.steps | 1171 steps = WinXP-64.steps |
| 1392 setup: | 1172 setup: |
| 1393 steps = WinXP-64-rss.steps | 1173 steps = WinXP-64-rss.steps |
| 1394 unattended_install.cdrom: | 1174 unattended_install.cdrom: |
| 1395 cdrom_cd1 = windows/WindowsXP-64.iso | 1175 cdrom_cd1 = windows/WindowsXP-64.iso |
| 1396 md5sum = 8d3f007ec9c2060cec8a50ee7d7dc512 | 1176 md5sum = 8d3f007ec9c2060cec8a50ee7d7dc512 |
| 1397 md5sum_1m = e812363ff427effc512b7801ee70e513 | 1177 md5sum_1m = e812363ff427effc512b7801ee70e513 |
| 1398 unattended_file = unattended/winxp64.sif | 1178 unattended_file = unattended/winxp64.sif |
| 1399 floppy = images/winXP-64/answer.vfd | 1179 floppy = images/winXP-64/floppy.img |
| 1400 # Uncomment virtio_network_installer_path line if | |
| 1401 # you have an msi installer, also make sure the | |
| 1402 # paths are properly set in your virtio driver iso. | |
| 1403 virtio_oemsetup_id = WNET64 | |
| 1404 virtio_network_path = 'F:\NetKVM\xp\amd64' | |
| 1405 #virtio_network_installer_path = 'F:\RHEV-Network64.
msi' | |
| 1406 whql_submission: | |
| 1407 desc_path_desc1 = $\WDK\Logo Type\Device Logo\Window
s XP | |
| 1408 desc_path_desc2 = $\WDK\Logo Type\Systems Logo\Windo
ws XP | |
| 1409 dd_data_logoarch = AMD64 | |
| 1410 dd_data_logoos = Windows XP 64-Bit Edition Version 2
003 | |
| 1411 dd_data_whqlos = Windows XP x64 | |
| 1412 dd_data_whqlqual = Basic | |
| 1413 | 1180 |
| 1414 - Win2003: | 1181 - Win2003: |
| 1415 image_name = win2003 | 1182 image_name = win2003 |
| 1416 image_size = 20G | 1183 image_size = 20G |
| 1417 | 1184 |
| 1418 variants: | 1185 variants: |
| 1419 - 32: | 1186 - 32: |
| 1420 image_name += -32 | 1187 image_name += -32 |
| 1421 install: | 1188 install: |
| 1422 cdrom_cd1 = windows/Windows2003_r2_VLK.iso | 1189 cdrom_cd1 = windows/Windows2003_r2_VLK.iso |
| 1423 md5sum = 03e921e9b4214773c21a39f5c3f42ef7 | 1190 md5sum = 03e921e9b4214773c21a39f5c3f42ef7 |
| 1424 md5sum_1m = 37c2fdec15ac4ec16aa10fdfdb338aa3 | 1191 md5sum_1m = 37c2fdec15ac4ec16aa10fdfdb338aa3 |
| 1425 user = user | 1192 user = user |
| 1426 steps = Win2003-32.steps | 1193 steps = Win2003-32.steps |
| 1427 setup: | 1194 setup: |
| 1428 steps = Win2003-32-rss.steps | 1195 steps = Win2003-32-rss.steps |
| 1429 unattended_install.cdrom: | 1196 unattended_install.cdrom: |
| 1430 cdrom_cd1 = windows/Windows2003_r2_VLK.iso | 1197 cdrom_cd1 = windows/Windows2003_r2_VLK.iso |
| 1431 md5sum = 03e921e9b4214773c21a39f5c3f42ef7 | 1198 md5sum = 03e921e9b4214773c21a39f5c3f42ef7 |
| 1432 md5sum_1m = 37c2fdec15ac4ec16aa10fdfdb338aa3 | 1199 md5sum_1m = 37c2fdec15ac4ec16aa10fdfdb338aa3 |
| 1433 unattended_file = unattended/win2003-32.sif | 1200 unattended_file = unattended/win2003-32.sif |
| 1434 floppy = images/win2003-32/answer.vfd | 1201 floppy = images/win2003-32/floppy.img |
| 1435 # Uncomment virtio_network_installer_path line if | |
| 1436 # you have an msi installer, also make sure the | |
| 1437 # paths are properly set in your virtio driver iso. | |
| 1438 virtio_oemsetup_id = WNET32 | |
| 1439 virtio_network_path = 'F:\NetKVM\2k3\x86' | |
| 1440 #virtio_network_installer_path = 'F:\RHEV-Network32.
msi' | |
| 1441 whql_submission: | |
| 1442 desc_path_desc1 = $\WDK\Logo Type\Device Logo\Window
s Server 2003 | |
| 1443 dd_data_logoarch = X86 | |
| 1444 dd_data_logoos = Windows Server 2003 | |
| 1445 dd_data_whqlos = Windows Server 2003 | |
| 1446 dd_data_whqlqual = Basic | |
| 1447 | 1202 |
| 1448 - 64: | 1203 - 64: |
| 1449 image_name += -64 | 1204 image_name += -64 |
| 1450 install: | 1205 install: |
| 1451 cdrom_cd1 = windows/Windows2003-x64.iso | 1206 cdrom_cd1 = windows/Windows2003-x64.iso |
| 1452 md5sum = 5703f87c9fd77d28c05ffadd3354dbbd | 1207 md5sum = 5703f87c9fd77d28c05ffadd3354dbbd |
| 1453 md5sum_1m = 439393c384116aa09e08a0ad047dcea8 | 1208 md5sum_1m = 439393c384116aa09e08a0ad047dcea8 |
| 1454 user = user | 1209 user = user |
| 1455 steps = Win2003-64.steps | 1210 steps = Win2003-64.steps |
| 1456 setup: | 1211 setup: |
| 1457 steps = Win2003-64-rss.steps | 1212 steps = Win2003-64-rss.steps |
| 1458 unattended_install.cdrom: | 1213 unattended_install.cdrom: |
| 1459 cdrom_cd1 = windows/Windows2003-x64.iso | 1214 cdrom_cd1 = windows/Windows2003-x64.iso |
| 1460 md5sum = 5703f87c9fd77d28c05ffadd3354dbbd | 1215 md5sum = 5703f87c9fd77d28c05ffadd3354dbbd |
| 1461 md5sum_1m = 439393c384116aa09e08a0ad047dcea8 | 1216 md5sum_1m = 439393c384116aa09e08a0ad047dcea8 |
| 1462 unattended_file = unattended/win2003-64.sif | 1217 unattended_file = unattended/win2003-64.sif |
| 1463 floppy = images/win2003-64/answer.vfd | 1218 floppy = images/win2003-64/floppy.img |
| 1464 # Uncomment virtio_network_installer_path line if | |
| 1465 # you have an msi installer, also make sure the | |
| 1466 # paths are properly set in your virtio driver iso. | |
| 1467 virtio_oemsetup_id = WNET64 | |
| 1468 virtio_network_path = 'F:\NetKVM\2k3\amd64' | |
| 1469 #virtio_network_installer_path = 'F:\RHEV-Network64.
msi' | |
| 1470 | |
| 1471 whql_submission: | |
| 1472 desc_path_desc1 = $\WDK\Logo Type\Device Logo\Window
s Server 2003 | |
| 1473 dd_data_logoarch = AMD64 | |
| 1474 dd_data_logoos = Windows Server 2003 | |
| 1475 dd_data_whqlos = Windows Server 2003 x64 | |
| 1476 dd_data_whqlqual = Basic | |
| 1477 | 1219 |
| 1478 - WinVista: | 1220 - WinVista: |
| 1479 image_name = winvista | 1221 image_name = winvista |
| 1480 image_size = 20G | 1222 image_size = 20G |
| 1481 whql_submission: | |
| 1482 desc_path_desc1 = $\WDK\Logo Type\Device Logo\Vista Client\D
evice Premium | |
| 1483 desc_path_desc2 = $\WDK\Logo Type\Device Logo\Vista Client\D
evice Standard | |
| 1484 desc_path_desc3 = $\WDK\Logo Type\Device Logo\Vista Client | |
| 1485 | 1223 |
| 1486 variants: | 1224 variants: |
| 1487 - 32: | 1225 - 32sp1: |
| 1488 whql_submission: | 1226 image_name += sp1-32 |
| 1489 dd_data_logoarch = X86 | 1227 install: |
| 1490 dd_data_logoos = Windows Vista | 1228 cdrom_cd1 = windows/WindowsVista-32.iso |
| 1491 dd_data_whqlos = Windows Vista Client | 1229 md5sum = 1008f323d5170c8e614e52ccb85c0491 |
| 1492 dd_data_whqlqual = Premium | 1230 md5sum_1m = c724e9695da483bc0fd59e426eaefc72 |
| 1493 variants: | 1231 steps = Win-Vista-32.steps |
| 1494 - sp1: | 1232 setup: |
| 1495 image_name += -sp1-32 | 1233 steps = WinVista-32-rss.steps |
| 1496 install: | 1234 unattended_install.cdrom: |
| 1497 cdrom_cd1 = windows/WindowsVista-32.iso | 1235 cdrom_cd1 = windows/WindowsVista-32.iso |
| 1498 md5sum = 1008f323d5170c8e614e52ccb85c0491 | 1236 md5sum = 1008f323d5170c8e614e52ccb85c0491 |
| 1499 md5sum_1m = c724e9695da483bc0fd59e426eaefc72 | 1237 md5sum_1m = c724e9695da483bc0fd59e426eaefc72 |
| 1500 steps = Win-Vista-32.steps | 1238 unattended_file = unattended/winvista-32-autounatten
d.xml |
| 1501 setup: | 1239 floppy = images/winvista-sp1-32/floppy.img |
| 1502 steps = WinVista-32-rss.steps | |
| 1503 unattended_install.cdrom: | |
| 1504 cdrom_cd1 = windows/WindowsVista-32.iso | |
| 1505 md5sum = 1008f323d5170c8e614e52ccb85c0491 | |
| 1506 md5sum_1m = c724e9695da483bc0fd59e426eaefc72 | |
| 1507 unattended_file = unattended/winvista-32-aut
ounattend.xml | |
| 1508 floppy = images/winvista-sp1-32/answer.vfd | |
| 1509 # Uncomment virtio_network_installer_path li
ne if | |
| 1510 # you have an msi installer, also make sure
the | |
| 1511 # paths are properly set in your virtio driv
er iso. | |
| 1512 virtio_storage_path = 'F:\viostor\w7\x86' | |
| 1513 virtio_network_path = 'F:\NetKVM\w7\x86' | |
| 1514 #virtio_network_installer_path = 'F:\RHEV-Ne
twork32.msi' | |
| 1515 | 1240 |
| 1516 - sp2: | 1241 - 64sp1: |
| 1517 image_name += -sp2-32 | 1242 image_name += sp1-64 |
| 1518 unattended_install.cdrom: | 1243 install: |
| 1519 cdrom_cd1 = windows/en_windows_vista_with_sp
2_x86_dvd_342266.iso | 1244 cdrom_cd1 = windows/WindowsVista-64.iso |
| 1520 md5sum = 19ca90a425667812977bab6f4ce24175 | 1245 md5sum = 11e2010d857fffc47813295e6be6d58d |
| 1521 md5sum_1m = 89c15020e0e6125be19acf7a2e5dc614 | 1246 md5sum_1m = 0947bcd5390546139e25f25217d6f165 |
| 1522 sha1sum = 25ad9a776503e6a583bec07879dbcc5dfd
20cd6e | 1247 steps = Win-Vista-64.steps |
| 1523 sha1sum_1m = a2afa4cffdc1c362dbf9e62942337f4
f875a22cf | 1248 setup: |
| 1524 unattended_file = unattended/winvista-32-aut
ounattend.xml | 1249 steps = WinVista-64-rss.steps |
| 1525 floppy = images/winvista-sp2-32/answer.vfd | 1250 unattended_install.cdrom: |
| 1526 # Uncomment virtio_network_installer_path li
ne if | 1251 cdrom_cd1 = windows/WindowsVista-64.iso |
| 1527 # you have an msi installer, also make sure
the | 1252 md5sum = 11e2010d857fffc47813295e6be6d58d |
| 1528 # paths are properly set in your virtio driv
er iso. | 1253 md5sum_1m = 0947bcd5390546139e25f25217d6f165 |
| 1529 virtio_storage_path = 'F:\viostor\w7\x86' | 1254 unattended_file = unattended/winvista-64-autounatten
d.xml |
| 1530 virtio_network_path = 'F:\NetKVM\w7\x86' | 1255 floppy = images/winvista-sp1-64/floppy.img |
| 1531 #virtio_network_installer_path = 'F:\RHEV-Ne
twork32.msi' | |
| 1532 | 1256 |
| 1533 - 64: | 1257 - 32sp2: |
| 1534 whql_submission: | 1258 image_name += sp2-32 |
| 1535 dd_data_logoarch = AMD64 | 1259 unattended_install.cdrom: |
| 1536 dd_data_logoos = Windows Vista | 1260 cdrom_cd1 = windows/en_windows_vista_with_sp2_x86_dv
d_342266.iso |
| 1537 dd_data_whqlos = Windows Vista Client x64 | 1261 md5sum = 19ca90a425667812977bab6f4ce24175 |
| 1538 dd_data_whqlqual = Premium | 1262 md5sum_1m = 89c15020e0e6125be19acf7a2e5dc614 |
| 1539 variants: | 1263 sha1sum = 25ad9a776503e6a583bec07879dbcc5dfd20cd6e |
| 1540 - sp1: | 1264 sha1sum_1m = a2afa4cffdc1c362dbf9e62942337f4f875a22c
f |
| 1541 image_name += -sp1-64 | 1265 unattended_file = unattended/winvista-32-autounatten
d.xml |
| 1542 install: | 1266 floppy = images/winvista-sp2-32/floppy.img |
| 1543 cdrom_cd1 = windows/WindowsVista-64.iso | 1267 |
| 1544 md5sum = 11e2010d857fffc47813295e6be6d58d | 1268 - 64sp2: |
| 1545 md5sum_1m = 0947bcd5390546139e25f25217d6f165 | 1269 image_name += sp2-64 |
| 1546 steps = Win-Vista-64.steps | 1270 unattended_install.cdrom: |
| 1547 setup: | 1271 cdrom_cd1 = windows/en_windows_vista_sp2_x64_dvd_342
267.iso |
| 1548 steps = WinVista-64-rss.steps | 1272 md5sum = a1c024d7abaf34bac3368e88efbc2574 |
| 1549 unattended_install.cdrom: | 1273 md5sum_1m = 3d84911a80f3df71d1026f7adedc2181 |
| 1550 cdrom_cd1 = windows/WindowsVista-64.iso | 1274 sha1sum = aaee3c04533899f9f8c4ae0c4250ef5fafbe29a3 |
| 1551 md5sum = 11e2010d857fffc47813295e6be6d58d | 1275 sha1sum_1m = 1fd21bd3ce2a4de8856c7b8fe6fdf80260f6d1c
7 |
| 1552 md5sum_1m = 0947bcd5390546139e25f25217d6f165 | 1276 unattended_file = unattended/winvista-64-autounatten
d.xml |
| 1553 unattended_file = unattended/winvista-64-aut
ounattend.xml | 1277 floppy = images/winvista-sp2-64/floppy.img |
| 1554 floppy = images/winvista-sp1-64/answer.vfd | |
| 1555 # Uncomment virtio_network_installer_path li
ne if | |
| 1556 # you have an msi installer, also make sure
the | |
| 1557 # paths are properly set in your virtio driv
er iso. | |
| 1558 virtio_storage_path = 'F:\viostor\w7\amd64' | |
| 1559 virtio_network_path = 'F:\NetKVM\w7\amd64' | |
| 1560 #virtio_network_installer_path = 'F:\RHEV-Ne
twork64.msi' | |
| 1561 - sp2: | |
| 1562 image_name += -sp2-64 | |
| 1563 unattended_install.cdrom: | |
| 1564 cdrom_cd1 = windows/en_windows_vista_sp2_x64
_dvd_342267.iso | |
| 1565 md5sum = a1c024d7abaf34bac3368e88efbc2574 | |
| 1566 md5sum_1m = 3d84911a80f3df71d1026f7adedc2181 | |
| 1567 sha1sum = aaee3c04533899f9f8c4ae0c4250ef5faf
be29a3 | |
| 1568 sha1sum_1m = 1fd21bd3ce2a4de8856c7b8fe6fdf80
260f6d1c7 | |
| 1569 unattended_file = unattended/winvista-64-aut
ounattend.xml | |
| 1570 floppy = images/winvista-sp2-64/answer.vfd | |
| 1571 # Uncomment virtio_network_installer_path li
ne if | |
| 1572 # you have an msi installer, also make sure
the | |
| 1573 # paths are properly set in your virtio driv
er iso. | |
| 1574 virtio_storage_path = 'F:\viostor\w7\amd64' | |
| 1575 virtio_network_path = 'F:\NetKVM\w7\amd64' | |
| 1576 #virtio_network_installer_path = 'F:\RHEV-Ne
twork64.msi' | |
| 1577 | 1278 |
| 1578 - Win2008: | 1279 - Win2008: |
| 1579 no whql | |
| 1580 image_name = win2008 | 1280 image_name = win2008 |
| 1581 image_size = 20G | 1281 image_size = 20G |
| 1582 | 1282 |
| 1583 variants: | 1283 variants: |
| 1584 - 32: | 1284 - 32sp1: |
| 1585 variants: | 1285 image_name += sp1-32 |
| 1586 - sp1: | 1286 install: |
| 1587 image_name += -sp1-32 | 1287 cdrom_cd1 = windows/Windows2008-x86.iso |
| 1588 install: | 1288 #en_windows_server_2008_datacenter_enterprise_standa
rd_x86_dvd_X14-26710.iso |
| 1589 cdrom_cd1 = windows/Windows2008-x86.iso | 1289 md5sum=0bfca49f0164de0a8eba236ced47007d |
| 1590 #en_windows_server_2008_datacenter_enterpris
e_standard_x86_dvd_X14-26710.iso | 1290 md5sum_1m=07d7f5006393f74dc76e6e2e943e2440 |
| 1591 md5sum=0bfca49f0164de0a8eba236ced47007d | 1291 sha1sum = 6ca018ff96f1e9b2b310a36546b6fded99a421e6 |
| 1592 md5sum_1m=07d7f5006393f74dc76e6e2e943e2440 | 1292 steps = Win2008-32.steps |
| 1593 sha1sum = 6ca018ff96f1e9b2b310a36546b6fded99
a421e6 | 1293 setup: |
| 1594 steps = Win2008-32.steps | 1294 steps = Win2008-32-rss.steps |
| 1595 setup: | 1295 unattended_install.cdrom: |
| 1596 steps = Win2008-32-rss.steps | 1296 cdrom_cd1 = windows/Windows2008-x86.iso |
| 1597 unattended_install.cdrom: | 1297 md5sum=0bfca49f0164de0a8eba236ced47007d |
| 1598 cdrom_cd1 = windows/Windows2008-x86.iso | 1298 md5sum_1m=07d7f5006393f74dc76e6e2e943e2440 |
| 1599 md5sum=0bfca49f0164de0a8eba236ced47007d | 1299 unattended_file = unattended/win2008-32-autounattend
.xml |
| 1600 md5sum_1m=07d7f5006393f74dc76e6e2e943e2440 | 1300 floppy = images/win2008-sp1-32/floppy.img |
| 1601 unattended_file = unattended/win2008-32-auto
unattend.xml | |
| 1602 floppy = images/win2008-sp1-32/answer.vfd | |
| 1603 # Uncomment virtio_network_installer_path li
ne if | |
| 1604 # you have an msi installer, also make sure
the | |
| 1605 # paths are properly set in your virtio driv
er iso. | |
| 1606 virtio_storage_path = 'F:\viostor\2k8\x86' | |
| 1607 virtio_network_path = 'F:\NetKVM\2k8\x86' | |
| 1608 #virtio_network_installer_path = 'F:\RHEV-Ne
twork32.msi' | |
| 1609 | 1301 |
| 1610 - sp2: | 1302 - 64sp1: |
| 1611 image_name += -sp2-32 | 1303 image_name += sp1-64 |
| 1612 unattended_install.cdrom: | 1304 install: |
| 1613 cdrom_cd1 = windows/en_windows_server_2008_d
atacenter_enterprise_standard_sp2_x86_dvd_342333.iso | 1305 steps = Win2008-64.steps |
| 1614 md5sum = b9201aeb6eef04a3c573d036a8780bdf | 1306 cdrom_cd1 = windows/Windows2008-x64.iso |
| 1615 md5sum_1m = b7a9d42e55ea1e85105a3a6ad4da8e04 | 1307 #en_windows_server_2008_datacenter_enterprise_standa
rd_x64_dvd_X14-26714.iso |
| 1616 sha1sum = 49d0d6917c1256fe81048d414fa473bbc7
6a8724 | 1308 md5sum=27c58cdb3d620f28c36333a5552f271c |
| 1617 sha1sum_1m = 9662ff7ed715faa00407e4befc484ea
52a92a9fb | 1309 md5sum_1m=efdcc11d485a1ef9afa739cb8e0ca766 |
| 1618 unattended_file = unattended/win2008-32-auto
unattend.xml | 1310 sha1sum = bd000374709f67e9358814db6ec8f0ddaaa16f70 |
| 1619 floppy = images/win2008-sp2-32/answer.vfd | 1311 passwd = 1q2w3eP |
| 1620 # Uncomment virtio_network_installer_path li
ne if | 1312 setup: |
| 1621 # you have an msi installer, also make sure
the | 1313 steps = Win2008-64-rss.steps |
| 1622 # paths are properly set in your virtio driv
er iso. | 1314 unattended_install.cdrom: |
| 1623 virtio_storage_path = 'F:\viostor\2k8\x86' | 1315 cdrom_cd1 = windows/Windows2008-x64.iso |
| 1624 virtio_network_path = 'F:\NetKVM\2k8\x86' | 1316 md5sum=27c58cdb3d620f28c36333a5552f271c |
| 1625 #virtio_network_installer_path = 'F:\RHEV-Ne
twork32.msi' | 1317 md5sum_1m=efdcc11d485a1ef9afa739cb8e0ca766 |
| 1318 unattended_file = unattended/win2008-64-autounattend
.xml |
| 1319 floppy = images/win2008-sp1-64/floppy.img |
| 1626 | 1320 |
| 1627 - 64: | 1321 - 32sp2: |
| 1628 variants: | 1322 image_name += sp2-32 |
| 1629 -sp1: | 1323 unattended_install.cdrom: |
| 1630 image_name += -sp1-64 | 1324 cdrom_cd1 = windows/en_windows_server_2008_datacente
r_enterprise_standard_sp2_x86_dvd_342333.iso |
| 1631 install: | 1325 md5sum = b9201aeb6eef04a3c573d036a8780bdf |
| 1632 steps = Win2008-64.steps | 1326 md5sum_1m = b7a9d42e55ea1e85105a3a6ad4da8e04 |
| 1633 cdrom_cd1 = windows/Windows2008-x64.iso | 1327 sha1sum = 49d0d6917c1256fe81048d414fa473bbc76a8724 |
| 1634 #en_windows_server_2008_datacenter_enterpris
e_standard_x64_dvd_X14-26714.iso | 1328 sha1sum_1m = 9662ff7ed715faa00407e4befc484ea52a92a9f
b |
| 1635 md5sum=27c58cdb3d620f28c36333a5552f271c | 1329 unattended_file = unattended/win2008-32-autounattend
.xml |
| 1636 md5sum_1m=efdcc11d485a1ef9afa739cb8e0ca766 | 1330 floppy = images/win2008-sp2-32/floppy.img |
| 1637 sha1sum = bd000374709f67e9358814db6ec8f0ddaa
a16f70 | |
| 1638 passwd = 1q2w3eP | |
| 1639 setup: | |
| 1640 steps = Win2008-64-rss.steps | |
| 1641 unattended_install.cdrom: | |
| 1642 cdrom_cd1 = windows/Windows2008-x64.iso | |
| 1643 md5sum=27c58cdb3d620f28c36333a5552f271c | |
| 1644 md5sum_1m=efdcc11d485a1ef9afa739cb8e0ca766 | |
| 1645 unattended_file = unattended/win2008-64-auto
unattend.xml | |
| 1646 floppy = images/win2008-sp1-64/answer.vfd | |
| 1647 # Uncomment virtio_network_installer_path li
ne if | |
| 1648 # you have an msi installer, also make sure
the | |
| 1649 # paths are properly set in your virtio driv
er iso. | |
| 1650 virtio_storage_path = 'F:\viostor\2k8\amd64' | |
| 1651 virtio_network_path = 'F:\NetKVM\2k8\amd64' | |
| 1652 #virtio_network_installer_path = 'F:\RHEV-Ne
twork64.msi' | |
| 1653 | 1331 |
| 1654 - sp2: | 1332 - 64sp2: |
| 1655 image_name += -sp2-64 | 1333 image_name += sp2-64 |
| 1656 unattended_install.cdrom: | 1334 unattended_install.cdrom: |
| 1657 cdrom_cd1 = windows/en_windows_server_2008_d
atacenter_enterprise_standard_sp2_x64_dvd_342336.iso | 1335 cdrom_cd1 = windows/en_windows_server_2008_datacente
r_enterprise_standard_sp2_x64_dvd_342336.iso |
| 1658 md5sum = e94943ef484035b3288d8db69599a6b5 | 1336 md5sum = e94943ef484035b3288d8db69599a6b5 |
| 1659 md5sum_1m = ee55506823d0efffb5532ddd88a8e47b | 1337 md5sum_1m = ee55506823d0efffb5532ddd88a8e47b |
| 1660 sha1sum = 34c7d726c57b0f8b19ba3b40d1b4044c15
fc2029 | 1338 sha1sum = 34c7d726c57b0f8b19ba3b40d1b4044c15fc2029 |
| 1661 sha1sum_1m = 8fe08b03e3531906855a60a78020ac9
577dff5ba | 1339 sha1sum_1m = 8fe08b03e3531906855a60a78020ac9577dff5b
a |
| 1662 unattended_file = unattended/win2008-64-auto
unattend.xml | 1340 unattended_file = unattended/win2008-64-autounattend
.xml |
| 1663 floppy = images/win2008-sp2-64/answer.vfd | 1341 floppy = images/win2008-sp2-64/floppy.img |
| 1664 # Uncomment virtio_network_installer_path li
ne if | |
| 1665 # you have an msi installer, also make sure
the | |
| 1666 # paths are properly set in your virtio driv
er iso. | |
| 1667 virtio_storage_path = 'F:\viostor\2k8\amd64' | |
| 1668 virtio_network_path = 'F:\NetKVM\2k8\amd64' | |
| 1669 #virtio_network_installer_path = 'F:\RHEV-Ne
twork64.msi' | |
| 1670 | 1342 |
| 1671 - r2: | 1343 - r2: |
| 1672 image_name += -r2-64 | 1344 image_name += -r2 |
| 1673 unattended_install.cdrom: | 1345 unattended_install.cdrom: |
| 1674 cdrom_cd1 = windows/en_windows_server_2008_r
2_standard_enterprise_datacenter_and_web_x64_dvd_x15-59754.iso | 1346 cdrom_cd1 = windows/en_windows_server_2008_r2_standa
rd_enterprise_datacenter_and_web_x64_dvd_x15-59754.iso |
| 1675 md5sum = 0207ef392c60efdda92071b0559ca0f9 | 1347 md5sum = 0207ef392c60efdda92071b0559ca0f9 |
| 1676 md5sum_1m = a5a22ce25008bd7109f6d830d627e3ed | 1348 md5sum_1m = a5a22ce25008bd7109f6d830d627e3ed |
| 1677 sha1sum = ad855ea913aaec3f1d0e1833c1aef7a0de
326b0a | 1349 sha1sum = ad855ea913aaec3f1d0e1833c1aef7a0de326b0a |
| 1678 sha1sum_1m = 9194a3aabae25b36e5f73cad001314b
2c8d07d14 | 1350 sha1sum_1m = 9194a3aabae25b36e5f73cad001314b2c8d07d1
4 |
| 1679 unattended_file = unattended/win2008-r2-auto
unattend.xml | 1351 unattended_file = unattended/win2008-r2-autounattend
.xml |
| 1680 floppy = images/win2008-r2-64/answer.vfd | 1352 floppy = images/win2008-r2-64/floppy.img |
| 1681 # Uncomment virtio_network_installer_path li
ne if | |
| 1682 # you have an msi installer, also make sure
the | |
| 1683 # paths are properly set in your virtio driv
er iso. | |
| 1684 virtio_storage_path = 'F:\viostor\2k8\amd64' | |
| 1685 virtio_network_path = 'F:\NetKVM\2k8\amd64' | |
| 1686 #virtio_network_installer_path = 'F:\RHEV-Ne
twork64.msi' | |
| 1687 | 1353 |
| 1688 - Win7: | 1354 - Win7: |
| 1689 image_name = win7 | 1355 image_name = win7 |
| 1690 image_size = 20G | 1356 image_size = 20G |
| 1691 whql_submission: | |
| 1692 desc_path_desc1 = $\WDK\Logo Type\Device Logo\Windows 7 Clie
nt\Logo | |
| 1693 desc_path_desc2 = $\WDK\Logo Type\Device Logo\Windows 7 Clie
nt | |
| 1694 device_data += " adq" | |
| 1695 dd_name_adq = AdditionalQualificationGroup | |
| 1696 dd_data_adq = Windows 7 | |
| 1697 | 1357 |
| 1698 variants: | 1358 variants: |
| 1699 - 32: | 1359 - 32: |
| 1700 image_name += -32 | 1360 image_name += -32 |
| 1701 unattended_install.cdrom: | 1361 unattended_install.cdrom: |
| 1702 cdrom_cd1 = windows/en_windows_7_ultimate_x86_dvd_x1
5-65921.iso | 1362 cdrom_cd1 = windows/en_windows_7_ultimate_x86_dvd_x1
5-65921.iso |
| 1703 md5sum = d0b8b407e8a3d4b75ee9c10147266b89 | 1363 md5sum = d0b8b407e8a3d4b75ee9c10147266b89 |
| 1704 md5sum_1m = 2b0c2c22b1ae95065db08686bf83af93 | 1364 md5sum_1m = 2b0c2c22b1ae95065db08686bf83af93 |
| 1705 sha1sum = 5395dc4b38f7bdb1e005ff414deedfdb16dbf610 | 1365 sha1sum = 5395dc4b38f7bdb1e005ff414deedfdb16dbf610 |
| 1706 sha1sum_1m = 9f9c3780aebeb28a9bf22188eed6bc15475dc9c
5 | 1366 sha1sum_1m = 9f9c3780aebeb28a9bf22188eed6bc15475dc9c
5 |
| 1707 unattended_file = unattended/win7-32-autounattend.xm
l | 1367 unattended_file = unattended/win7-32-autounattend.xm
l |
| 1708 floppy = images/win7-32/answer.vfd | 1368 floppy = images/win7-32/floppy.img |
| 1709 # Uncomment virtio_network_installer_path line if | |
| 1710 # you have an msi installer, also make sure the | |
| 1711 # paths are properly set in your virtio driver iso. | |
| 1712 virtio_storage_path = 'F:\viostor\w7\x86' | |
| 1713 virtio_network_path = 'F:\NetKVM\w7\x86' | |
| 1714 #virtio_network_installer_path = 'F:\RHEV-Network32.
msi' | |
| 1715 whql_submission: | |
| 1716 dd_data_logoarch = X86 | |
| 1717 dd_data_logoos = Windows 7 | |
| 1718 dd_data_whqlos = Windows 7 Client | |
| 1719 dd_data_whqlqual = Logo | |
| 1720 | 1369 |
| 1721 - 64: | 1370 - 64: |
| 1722 image_name += -64 | 1371 image_name += -64 |
| 1723 install: | 1372 install: |
| 1724 cdrom_cd1 = windows/en_windows_7_ultimate_x64_dvd_x1
5-65922.iso | 1373 cdrom_cd1 = windows/en_windows_7_ultimate_x64_dvd_x1
5-65922.iso |
| 1725 md5sum=f43d22e4fb07bf617d573acd8785c028 | 1374 md5sum=f43d22e4fb07bf617d573acd8785c028 |
| 1726 md5sum_1m=b44d8cf99dbed2a5cb02765db8dfd48f | 1375 md5sum_1m=b44d8cf99dbed2a5cb02765db8dfd48f |
| 1727 passwd = 1q2w3eP | 1376 passwd = 1q2w3eP |
| 1728 steps = Win7-64.steps | 1377 steps = Win7-64.steps |
| 1729 setup: | 1378 setup: |
| 1730 steps = Win7-64-rss.steps | 1379 steps = Win7-64-rss.steps |
| 1731 unattended_install.cdrom: | 1380 unattended_install.cdrom: |
| 1732 cdrom_cd1 = windows/en_windows_7_ultimate_x64_dvd_x1
5-65922.iso | 1381 cdrom_cd1 = windows/en_windows_7_ultimate_x64_dvd_x1
5-65922.iso |
| 1733 md5sum = f43d22e4fb07bf617d573acd8785c028 | 1382 md5sum = f43d22e4fb07bf617d573acd8785c028 |
| 1734 md5sum_1m = b44d8cf99dbed2a5cb02765db8dfd48f | 1383 md5sum_1m = b44d8cf99dbed2a5cb02765db8dfd48f |
| 1735 sha1sum = 326327cc2ff9f05379f5058c41be6bc5e004baa7 | 1384 sha1sum = 326327cc2ff9f05379f5058c41be6bc5e004baa7 |
| 1736 sha1sum_1m = 4a3903bd5157de54f0702e5263e0a683c577551
5 | 1385 sha1sum_1m = 4a3903bd5157de54f0702e5263e0a683c577551
5 |
| 1737 unattended_file = unattended/win7-64-autounattend.xm
l | 1386 unattended_file = unattended/win7-64-autounattend.xm
l |
| 1738 floppy = images/win7-64/answer.vfd | 1387 floppy = images/win7-64/floppy.img |
| 1739 # Uncomment virtio_network_installer_path line if | |
| 1740 # you have an msi installer, also make sure the | |
| 1741 # paths are properly set in your virtio driver iso. | |
| 1742 virtio_storage_path = 'F:\viostor\w7\amd64' | |
| 1743 virtio_network_path = 'F:\NetKVM\w7\amd64' | |
| 1744 #virtio_network_installer_path = 'F:\RHEV-Network64.
msi' | |
| 1745 whql_submission: | |
| 1746 dd_data_logoarch = AMD64 | |
| 1747 dd_data_logoos = Windows 7 | |
| 1748 dd_data_whqlos = Windows 7 Client x64 | |
| 1749 dd_data_whqlqual = Logo | |
| 1750 | 1388 |
| 1751 | 1389 |
| 1752 # Unix/BSD section | 1390 # Unix/BSD section |
| 1753 - @Unix: | 1391 - @Unix: |
| 1754 only install | 1392 only install |
| 1755 kill_vm = yes | 1393 kill_vm = yes |
| 1756 kill_vm_gracefully = no | 1394 kill_vm_gracefully = no |
| 1757 kill_vm_timeout = 0 | 1395 kill_vm_timeout = 0 |
| 1758 | 1396 |
| 1759 variants: | 1397 variants: |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1818 variants: | 1456 variants: |
| 1819 - @ide: | 1457 - @ide: |
| 1820 drive_format=ide | 1458 drive_format=ide |
| 1821 - scsi: | 1459 - scsi: |
| 1822 drive_format=scsi | 1460 drive_format=scsi |
| 1823 - virtio_blk: | 1461 - virtio_blk: |
| 1824 drive_format=virtio | 1462 drive_format=virtio |
| 1825 image_boot=yes | 1463 image_boot=yes |
| 1826 | 1464 |
| 1827 | 1465 |
| 1828 virtio_net|virtio_blk|e1000|balloon_check: | 1466 virtio|virtio_blk|e1000|balloon_check: |
| 1829 only Fedora.11 Fedora.12 Fedora.13 RHEL.5 OpenSUSE.11 SLES.11 Ubuntu-8.10-se
rver | 1467 only Fedora.11 Fedora.12 Win2008 WinVista Win7 OpenSUSE.11 SLES.11 Ubuntu-8.
10-server |
| 1830 # only WinXP Win2003 Win2008 WinVista Win7 Fedora.11 Fedora.12 Fedora.13 RHE
L.5 OpenSUSE.11 SLES.11 Ubuntu-8.10-server | |
| 1831 | 1468 |
| 1832 | 1469 |
| 1833 variants: | 1470 variants: |
| 1834 - @qcow2: | 1471 - @qcow2: |
| 1835 image_format = qcow2 | 1472 image_format = qcow2 |
| 1836 post_command += " python scripts/check_image.py;" | 1473 post_command += " python scripts/check_image.py;" |
| 1837 post_command_timeout = 600 | 1474 post_command_timeout = 600 |
| 1838 post_command_noncritical = yes | 1475 post_command_noncritical = yes |
| 1839 ioquit: | 1476 ioquit: |
| 1840 post_command_noncritical = no | 1477 post_command_noncritical = no |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1875 driver = igb | 1512 driver = igb |
| 1876 # Driver option to specify the maximum number of virtual functions | 1513 # Driver option to specify the maximum number of virtual functions |
| 1877 # (on vxge the option is , for example, is max_config_dev) | 1514 # (on vxge the option is , for example, is max_config_dev) |
| 1878 # the default below is for the igb driver | 1515 # the default below is for the igb driver |
| 1879 driver_option = "max_vfs=7" | 1516 driver_option = "max_vfs=7" |
| 1880 # Number of devices that are going to be requested. | 1517 # Number of devices that are going to be requested. |
| 1881 devices_requested = 7 | 1518 devices_requested = 7 |
| 1882 | 1519 |
| 1883 | 1520 |
| 1884 steps ?<= steps/ | 1521 steps ?<= steps/ |
| OLD | NEW |