├── README.md ├── applychoices.py ├── boot_cmdline.py ├── bootloader.py ├── brandiso.py ├── cdutil.py ├── consts.py ├── createinstdepot.py ├── customdrivers.py ├── datastore.py ├── debugging.py ├── devices.py ├── dispatch.py ├── drivereula.txt ├── esxcfg-py ├── esxcfg-nics.py └── esxcfg-vswitch.py ├── esxconf.py ├── esxlicense.py ├── eula.txt ├── examples ├── ks-10g-cos.cfg ├── ks-cciss.cfg ├── ks-first-safe.cfg ├── ks-first.cfg └── ks-save-vmfs.cfg ├── exception.py ├── firewall.py ├── fsset.py ├── fstab.py ├── grubupdate.py ├── gui.py ├── gui ├── bootloader_gui.py ├── common_windows.py ├── cosnetwork_gui.py ├── cosnetworkadapter_gui.py ├── customdrivers_gui.py ├── datastore_gui.py ├── driverload_gui.py ├── esxlocation_gui.py ├── eula_gui.py ├── finished_gui.py ├── ftpmedia_gui.py ├── glade │ ├── addpartition.glade │ ├── advancedoptions.glade │ ├── advancedpartitioning.glade │ ├── bootloader.glade │ ├── cosnetwork.glade │ ├── cosnetworkadapter.glade │ ├── customdrivers.glade │ ├── datastore.glade │ ├── driverload.glade │ ├── esxlocation.glade │ ├── eula.glade │ ├── exception.glade │ ├── finished.glade │ ├── ftpmedia.glade │ ├── httpmedia.glade │ ├── icon.png │ ├── installation.glade │ ├── installlocation.glade │ ├── installmedia.glade │ ├── iscsinetwork.glade │ ├── iscsisetup.glade │ ├── keyboard.glade │ ├── license.glade │ ├── mouse.glade │ ├── nfsmedia.glade │ ├── progress_dialog.glade │ ├── review.glade │ ├── rootpassword.glade │ ├── setupchoice.glade │ ├── setupvmdk.glade │ ├── storage-widgets.glade │ ├── timedate.glade │ ├── timezone.glade │ ├── topbar.png │ ├── usbmedia.glade │ ├── vmfspartitioning.glade │ ├── weasel.glade │ ├── welcome.glade │ └── welcomepanel.png ├── htmltextview.py ├── httpmedia_gui.py ├── images │ ├── abouttoinstall.png │ ├── adminpassword.png │ ├── boot-loader.png │ ├── connected.png │ ├── customdrivers.png │ ├── datastore.png │ ├── disconnected.png │ ├── drive.png │ ├── driverloading.png │ ├── eula.png │ ├── icon.png │ ├── installing.png │ ├── keyboard.png │ ├── license.png │ ├── loading.png │ ├── map │ │ ├── background.png │ │ ├── city_hover.png │ │ ├── city_idle.png │ │ ├── city_pressed.png │ │ ├── city_sel.png │ │ ├── map.png │ │ └── zone_slices │ │ │ ├── UTC000_sel.png │ │ │ ├── UTCm0100_hover.png │ │ │ ├── UTCm0100_idle.png │ │ │ ├── UTCm0100_pressed.png │ │ │ ├── UTCm0100_sel.png │ │ │ ├── UTCm0200_hover.png │ │ │ ├── UTCm0200_idle.png │ │ │ ├── UTCm0200_pressed.png │ │ │ ├── UTCm0200_sel.png │ │ │ ├── UTCm0300_hover.png │ │ │ ├── UTCm0300_idle.png │ │ │ ├── UTCm0300_pressed.png │ │ │ ├── UTCm0300_sel.png │ │ │ ├── UTCm0400_hover.png │ │ │ ├── UTCm0400_idle.png │ │ │ ├── UTCm0400_pressed.png │ │ │ ├── UTCm0400_sel.png │ │ │ ├── UTCm0500_hover.png │ │ │ ├── UTCm0500_idle.png │ │ │ ├── UTCm0500_pressed.png │ │ │ ├── UTCm0500_sel.png │ │ │ ├── UTCm0600_hover.png │ │ │ ├── UTCm0600_idle.png │ │ │ ├── UTCm0600_pressed.png │ │ │ ├── UTCm0600_sel.png │ │ │ ├── UTCm0700_hover.png │ │ │ ├── UTCm0700_idle.png │ │ │ ├── UTCm0700_pressed.png │ │ │ ├── UTCm0700_sel.png │ │ │ ├── UTCm0800_hover.png │ │ │ ├── UTCm0800_idle.png │ │ │ ├── UTCm0800_pressed.png │ │ │ ├── UTCm0800_sel.png │ │ │ ├── UTCm0900_hover.png │ │ │ ├── UTCm0900_idle.png │ │ │ ├── UTCm0900_pressed.png │ │ │ ├── UTCm0900_sel.png │ │ │ ├── UTCm1000_hover.png │ │ │ ├── UTCm1000_idle.png │ │ │ ├── UTCm1000_pressed.png │ │ │ ├── UTCm1000_sel.png │ │ │ ├── UTCm1100_hover.png │ │ │ ├── UTCm1100_idle.png │ │ │ ├── UTCm1100_pressed.png │ │ │ ├── UTCm1100_sel.png │ │ │ ├── UTCm1200_hover.png │ │ │ ├── UTCm1200_idle.png │ │ │ ├── UTCm1200_pressed.png │ │ │ ├── UTCm1200_sel.png │ │ │ ├── UTCp0000_hover.png │ │ │ ├── UTCp0000_idle.png │ │ │ ├── UTCp0000_pressed.png │ │ │ ├── UTCp0000_sel.png │ │ │ ├── UTCp0100_hover.png │ │ │ ├── UTCp0100_idle.png │ │ │ ├── UTCp0100_pressed.png │ │ │ ├── UTCp0100_sel.png │ │ │ ├── UTCp0200_hover.png │ │ │ ├── UTCp0200_idle.png │ │ │ ├── UTCp0200_pressed.png │ │ │ ├── UTCp0200_sel.png │ │ │ ├── UTCp0300_hover.png │ │ │ ├── UTCp0300_idle.png │ │ │ ├── UTCp0300_pressed.png │ │ │ ├── UTCp0300_sel.png │ │ │ ├── UTCp0400_hover.png │ │ │ ├── UTCp0400_idle.png │ │ │ ├── UTCp0400_pressed.png │ │ │ ├── UTCp0400_sel.png │ │ │ ├── UTCp0500_hover.png │ │ │ ├── UTCp0500_idle.png │ │ │ ├── UTCp0500_pressed.png │ │ │ ├── UTCp0500_sel.png │ │ │ ├── UTCp0600_hover.png │ │ │ ├── UTCp0600_idle.png │ │ │ ├── UTCp0600_pressed.png │ │ │ ├── UTCp0600_sel.png │ │ │ ├── UTCp0700_hover.png │ │ │ ├── UTCp0700_idle.png │ │ │ ├── UTCp0700_pressed.png │ │ │ ├── UTCp0700_sel.png │ │ │ ├── UTCp0800_hover.png │ │ │ ├── UTCp0800_idle.png │ │ │ ├── UTCp0800_pressed.png │ │ │ ├── UTCp0800_sel.png │ │ │ ├── UTCp0900_hover.png │ │ │ ├── UTCp0900_idle.png │ │ │ ├── UTCp0900_pressed.png │ │ │ ├── UTCp0900_sel.png │ │ │ ├── UTCp1000_hover.png │ │ │ ├── UTCp1000_idle.png │ │ │ ├── UTCp1000_pressed.png │ │ │ ├── UTCp1000_sel.png │ │ │ ├── UTCp1100_hover.png │ │ │ ├── UTCp1100_idle.png │ │ │ ├── UTCp1100_pressed.png │ │ │ ├── UTCp1100_sel.png │ │ │ ├── UTCp1200_hover.png │ │ │ ├── UTCp1200_idle.png │ │ │ ├── UTCp1200_pressed.png │ │ │ ├── UTCp1200_sel.png │ │ │ ├── UTCp1300_hover.png │ │ │ ├── UTCp1300_idle.png │ │ │ ├── UTCp1300_pressed.png │ │ │ └── UTCp1300_sel.png │ ├── mediaselect.png │ ├── network.png │ ├── network_configure.png │ ├── network_media.png │ ├── networkadapter.png │ ├── partitioning.png │ ├── setuptype.png │ ├── timedate.png │ ├── timezone.png │ └── usb_cd_media.png ├── installation_gui.py ├── installlocation_gui.py ├── installmedia_gui.py ├── ip_entry.py ├── iscsi_detour.py ├── iscsinetwork_gui.py ├── iscsisetup_gui.py ├── keyboard_gui.py ├── license_gui.py ├── network_address_widgets.py ├── nfsmedia_gui.py ├── nic_setup.py ├── password_gui.py ├── review_gui.py ├── setupchoice_gui.py ├── setupvmdk_gui.py ├── signalconnect.py ├── storage_widgets.py ├── timedate_gui.py ├── timezone_gui.py ├── usbmedia_gui.py └── welcome_gui.py ├── iscsi.py ├── isolinux.cfg ├── keyboard.xml ├── ks-upgrade.cfg ├── ks.cfg ├── log.py ├── media.py ├── migrate.py ├── migration ├── __init__.py ├── handlers.py ├── services.py └── simple.py ├── mouse.xml ├── networking ├── __init__.py ├── host_config.py ├── networking_base.py └── utils.py ├── packages.py ├── partition.py ├── pciidlib.py ├── precheck.py ├── regexlocator.py ├── remote_files.py ├── review.py ├── script.py ├── scriptedinstall ├── example.bs ├── grammar.py ├── preparser.py ├── scriptedinstallfile.py ├── scriptedinstallutil.py ├── scriptwriter.py └── sui │ └── errors_scui.py ├── scui.py ├── services.py ├── singleton.py ├── startx.py ├── systemsettings.py ├── task_progress.py ├── test ├── caged_weasel.py ├── docage.py ├── drivers │ ├── drivers.bad.xml │ ├── drivers.bad.xml-2 │ ├── drivers.bad.xml-3 │ ├── drivers.bad.xml-4 │ ├── drivers.bad.xml-5 │ ├── drivers.bad.xml-6 │ ├── drivers.bad.xml-7 │ ├── drivers.bad.xml-8 │ ├── drivers.bad.xml-9 │ ├── drivers.good.xml │ └── drivers.good.xml-2 ├── faux │ ├── README │ ├── fauxTextuiIO.py │ ├── fauxlocations.py │ ├── fauxroot.py │ ├── parted.py │ ├── rpm.py │ └── vmkctl.py ├── finddirsizes.py ├── good-config.1 │ ├── README │ ├── bin │ │ └── vmware │ │ │ ├── vmkfstools │ │ │ └── vsd │ ├── dev │ │ ├── cdrom │ │ ├── hda │ │ ├── hda1 │ │ ├── hda2 │ │ └── sdd1 │ ├── etc │ │ ├── hosts │ │ ├── mtab │ │ ├── resolv.conf │ │ ├── sysconfig │ │ │ └── network │ │ └── vmware │ │ │ ├── esx.conf │ │ │ └── init │ │ │ └── init.d │ │ │ ├── 14.foobar │ │ │ └── 71.bogusipmi │ ├── fauxconfig.py │ ├── home │ │ └── empty │ ├── lib │ │ └── kbd │ │ │ └── keymaps │ │ │ └── i386 │ │ │ ├── azerty │ │ │ ├── be-latin1.map.gz │ │ │ ├── fr-latin1.map.gz │ │ │ ├── fr-latin9.map.gz │ │ │ └── fr-pc.map.gz │ │ │ ├── dvorak │ │ │ └── dvorak.map.gz │ │ │ ├── qwerty │ │ │ ├── br-abnt2.map.gz │ │ │ ├── cz-lat2.map.gz │ │ │ ├── dk-latin1.map.gz │ │ │ ├── dk.map.gz │ │ │ ├── es.map.gz │ │ │ ├── et.map.gz │ │ │ ├── fi-latin1.map.gz │ │ │ ├── fi.map.gz │ │ │ ├── gr.map.gz │ │ │ ├── is-latin1.map.gz │ │ │ ├── it-ibm.map.gz │ │ │ ├── it.map.gz │ │ │ ├── it2.map.gz │ │ │ ├── jp106.map.gz │ │ │ ├── la-latin1.map.gz │ │ │ ├── mk-utf.map.gz │ │ │ ├── nl.map.gz │ │ │ ├── no.map.gz │ │ │ ├── pl2.map.gz │ │ │ ├── pt-latin1.map.gz │ │ │ ├── ro_win.map.gz │ │ │ ├── ru-cp1251.map.gz │ │ │ ├── ru-ms.map.gz │ │ │ ├── ru.map.gz │ │ │ ├── sv-latin1.map.gz │ │ │ ├── trq.map.gz │ │ │ ├── ua-utf.map.gz │ │ │ ├── uk.map.gz │ │ │ ├── us-acentos.map.gz │ │ │ └── us.map.gz │ │ │ └── qwertz │ │ │ ├── croat.map.gz │ │ │ ├── cz-us-qwertz.map.gz │ │ │ ├── de-latin1-nodeadkeys.map.gz │ │ │ ├── de-latin1.map.gz │ │ │ ├── de.map.gz │ │ │ └── slovene.map.gz │ ├── mnt │ │ ├── cdrom │ │ │ ├── isoinfo │ │ │ └── isolinux │ │ │ │ └── initrd.img │ │ ├── source │ │ │ ├── VMware │ │ │ │ └── RPMS │ │ │ │ │ ├── packageData.pkl │ │ │ │ │ └── primary.xml │ │ │ ├── metadata.zip │ │ │ └── packages.xml │ │ └── sysimage │ │ │ ├── boot │ │ │ └── grub │ │ │ │ └── grub.conf │ │ │ ├── esx3-installation │ │ │ └── etc │ │ │ │ ├── fstab │ │ │ │ ├── group │ │ │ │ ├── gshadow │ │ │ │ ├── motd │ │ │ │ ├── passwd │ │ │ │ └── shadow │ │ │ ├── etc │ │ │ ├── group │ │ │ ├── passwd │ │ │ ├── shadow │ │ │ ├── skel │ │ │ │ └── .bashrc │ │ │ └── vmware │ │ │ │ └── hostd │ │ │ │ └── authorization.xml │ │ │ ├── root │ │ │ └── empty │ │ │ └── usr │ │ │ └── share │ │ │ └── grub │ │ │ └── x86_64-redhat │ │ │ ├── e2fs_stage1_5 │ │ │ ├── fat_stage1_5 │ │ │ ├── ffs_stage1_5 │ │ │ ├── iso9660_stage1_5 │ │ │ ├── jfs_stage1_5 │ │ │ ├── minix_stage1_5 │ │ │ ├── reiserfs_stage1_5 │ │ │ ├── stage1 │ │ │ ├── stage2 │ │ │ ├── stage2_eltorito │ │ │ ├── ufs2_stage1_5 │ │ │ ├── vstatfs_stage1_5 │ │ │ └── xfs_stage1_5 │ ├── proc │ │ ├── cmdline │ │ ├── cpuinfo │ │ ├── devices │ │ ├── filesystems │ │ └── sys │ │ │ └── dev │ │ │ └── cdrom │ │ │ └── info │ ├── tmp │ │ └── empty │ ├── usr │ │ ├── bin │ │ │ └── mount │ │ ├── sbin │ │ │ ├── esxcfg-rescan │ │ │ ├── esxcfg-vmhbadevs │ │ │ ├── mkfs.ext2 │ │ │ ├── mkswap │ │ │ ├── scantools │ │ │ └── tune2fs │ │ └── share │ │ │ └── grub │ │ │ └── i386-redhat │ │ │ ├── e2fs_stage1_5 │ │ │ ├── fat_stage1_5 │ │ │ ├── ffs_stage1_5 │ │ │ ├── iso9660_stage1_5 │ │ │ ├── jfs_stage1_5 │ │ │ ├── minix_stage1_5 │ │ │ ├── reiserfs_stage1_5 │ │ │ ├── stage1 │ │ │ ├── stage2 │ │ │ ├── stage2_eltorito │ │ │ ├── ufs2_stage1_5 │ │ │ ├── vstatfs_stage1_5 │ │ │ └── xfs_stage1_5 │ └── var │ │ └── log │ │ └── empty ├── gui │ ├── negative.adduser.vimuser │ ├── negative.cosnetwork.settings │ ├── negative.datastore.volumename │ ├── negative.install.cpioerror │ ├── negative.license.expired │ ├── negative.nonics │ ├── negative.setupvmdk.badPartitions │ ├── negative.timedate.manual.bad │ ├── negative.usbmedia.nopackages │ ├── negative.usbmedia.noselection │ ├── positive.cosnetwork.static │ ├── positive.esxlocation.ide │ ├── positive.have.esx.but.no.vmfs │ ├── positive.install │ ├── positive.install.cancel │ ├── positive.install.parts │ ├── positive.installlocation.list │ ├── positive.keyboard.list │ ├── positive.license.badserial │ ├── positive.license.eval │ ├── positive.nfs.urlparse │ ├── positive.proxy.set │ ├── positive.setupvmdk.resetparts │ ├── positive.timezone.basic │ ├── positive.timezone.weirdzones │ ├── positive.usbmedia.basic │ ├── positive.usbmedia.eject │ ├── positive.usbmedia.rescan │ └── positive.user.accounts ├── interactive_cage.py ├── kiwi │ ├── __init__.py │ ├── __version__.py │ ├── accessor.py │ ├── enums.py │ ├── log.py │ ├── python.py │ ├── ui │ │ ├── __init__.py │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── common.py │ │ │ ├── main.py │ │ │ ├── recorder.py │ │ │ └── runner.py │ └── utils.py ├── migrate_support.py ├── record-gui ├── record-text ├── replay-gui ├── run_all_tests.sh ├── scriptedinstall │ ├── commands │ │ ├── negative.auth.badNIS.bs │ │ ├── negative.auth.noADDomain.bs │ │ ├── negative.autopart.baddisk.bs │ │ ├── negative.autopart.noflags.bs │ │ ├── negative.bootloader.invalidDriveorder.bs │ │ ├── negative.bootloader.invalidLocation.bs │ │ ├── negative.bootloader.invalidMD5.bs │ │ ├── negative.bootloader.largePWD.bs │ │ ├── negative.bootloader.smallPWD.bs │ │ ├── negative.clearpart.dupdrive.bs │ │ ├── negative.clearpart.dupignoredrive.bs │ │ ├── negative.clearpart.invalidDrive.bs │ │ ├── negative.clearpart.invalidIgnoredrive.bs │ │ ├── negative.clearpart.nodrives.bs │ │ ├── negative.esxlocation.baddisk.bs │ │ ├── negative.esxlocation.badfirst.bs │ │ ├── negative.esxlocation.baduuid.bs │ │ ├── negative.esxlocation.clearconflict.bs │ │ ├── negative.firewall.deprecated.bs │ │ ├── negative.firewallport.invalidDir.bs │ │ ├── negative.firewallport.invalidPort.bs │ │ ├── negative.firewallport.invalidPort2.bs │ │ ├── negative.firewallport.invalidPortName.bs │ │ ├── negative.firewallport.invalidProto.bs │ │ ├── negative.firewallport.invalidService.bs │ │ ├── negative.firewallport.noName.bs │ │ ├── negative.firewallport.noOpenNoClose.bs │ │ ├── negative.include.self.bs │ │ ├── negative.install.baddir.bs │ │ ├── negative.install.nourl.bs │ │ ├── negative.keyboard.bs │ │ ├── negative.network.bootproto.dhcp.gwSet.bs │ │ ├── negative.network.bootproto.dhcp.ipSet.bs │ │ ├── negative.network.bootproto.dhcp.nmSet.bs │ │ ├── negative.network.bootproto.static.badNM.bs │ │ ├── negative.network.bootproto.static.badNS.bs │ │ ├── negative.network.bootproto.static.noIP.bs │ │ ├── negative.network.invalidDevice.bs │ │ ├── negative.partition.badMountpoint.bs │ │ ├── negative.partition.badvmfs.bs │ │ ├── negative.partition.badvmfs2.bs │ │ ├── negative.partition.badvmfs3.bs │ │ ├── negative.partition.invalidDrive.bs │ │ ├── negative.partition.invalidFSType.bs │ │ ├── negative.partition.invalidMaxSize.bs │ │ ├── negative.partition.invalidMount.bs │ │ ├── negative.partition.invalidSize.bs │ │ ├── negative.partition.invalidVirtualDisk.bs │ │ ├── negative.partition.lowMaxSize.bs │ │ ├── negative.partition.negativeMaxSize.bs │ │ ├── negative.partition.negativeSize.bs │ │ ├── negative.partition.noRoot.bs │ │ ├── negative.partition.nodisk.bs │ │ ├── negative.partition.notMountable.bs │ │ ├── negative.partition.notSwap.bs │ │ ├── negative.partition.tooSmall.bs │ │ ├── negative.partition.unsupportedDrive.bs │ │ ├── negative.partition.virtualBoot.bs │ │ ├── negative.partition.vmkcore.mount.bs │ │ ├── negative.partition.vmkcore.virt.bs │ │ ├── negative.post.invalidInterpreter.bs │ │ ├── negative.pre.invalidInterpreter.bs │ │ ├── negative.rootpw.invalidCrypt.bs │ │ ├── negative.rootpw.longPWD.bs │ │ ├── negative.rootpw.noPWD.bs │ │ ├── negative.timezone.invalidzone.bs │ │ ├── negative.timezone.nozone.bs │ │ ├── negative.virtualdisk.badname.bs │ │ ├── negative.virtualdisk.badsize.bs │ │ ├── negative.virtualdisk.badsize2.bs │ │ ├── negative.virtualdisk.big.disk.bs │ │ ├── negative.virtualdisk.unknownvmfs.bs │ │ ├── negative.vmserialnum.badformat.bs │ │ ├── negative.vmserialnum.badkey.bs │ │ ├── positive.goodvmfs.bs │ │ ├── possitive.auth.disableMD5.bs │ │ ├── possitive.auth.disableShadow.bs │ │ ├── possitive.auth.enableKRB5.bs │ │ ├── possitive.auth.enableLDAP.bs │ │ ├── possitive.auth.enableLDAPAuth.bs │ │ ├── possitive.auth.enableMD5.bs │ │ ├── possitive.auth.enableNIS.bs │ │ ├── possitive.auth.enableShadow.bs │ │ ├── possitive.auth.noMD5.bs │ │ ├── possitive.auth.noNIS.bs │ │ ├── possitive.auth.noShadow.bs │ │ ├── possitive.autopart.cciss.bs │ │ ├── possitive.autopart.disk.bs │ │ ├── possitive.autopart.drive.bs │ │ ├── possitive.autopart.firstdisk.bs │ │ ├── possitive.autopart.vml.bs │ │ ├── possitive.bootloader.MD5AndPlaintxt.bs │ │ ├── possitive.bootloader.append.bs │ │ ├── possitive.bootloader.driveorder.bs │ │ ├── possitive.bootloader.location.none.bs │ │ ├── possitive.bootloader.location.partition.bs │ │ ├── possitive.bootloader.md5pwd.bs │ │ ├── possitive.bootloader.nolocation.bs │ │ ├── possitive.bootloader.pwd.bs │ │ ├── possitive.bootloader.upgrade.bs │ │ ├── possitive.clearpart.all.bs │ │ ├── possitive.clearpart.alldrives.bs │ │ ├── possitive.clearpart.cciss.bs │ │ ├── possitive.clearpart.drives.bs │ │ ├── possitive.clearpart.drives.multiple.bs │ │ ├── possitive.clearpart.exceptvmfs.bs │ │ ├── possitive.clearpart.firstdisk.bs │ │ ├── possitive.clearpart.firstdisk.fancy.bs │ │ ├── possitive.clearpart.ignoredrives.bs │ │ ├── possitive.clearpart.initlabel.bs │ │ ├── possitive.clearpart.linux.bs │ │ ├── possitive.clearpart.minimal.bs │ │ ├── possitive.empty.bs │ │ ├── possitive.esxlocation.firstdisk.bs │ │ ├── possitive.firewall.allowIncoming.bs │ │ ├── possitive.firewall.blockOutgoing.bs │ │ ├── possitive.firewall.disabled.bs │ │ ├── possitive.firewall.enabled.bs │ │ ├── possitive.firewallport.close.bs │ │ ├── possitive.firewallport.open.bs │ │ ├── possitive.install.cdrom.bs │ │ ├── possitive.install.default.bs │ │ ├── possitive.install.ftp.bs │ │ ├── possitive.install.http.bs │ │ ├── possitive.install.nfs.bs │ │ ├── possitive.keyboard.bs │ │ ├── possitive.lang.bs │ │ ├── possitive.langsupport.bs │ │ ├── possitive.mouse.bs │ │ ├── possitive.network.addvmportgroup.bs │ │ ├── possitive.network.bootproto.dhcp.bs │ │ ├── possitive.network.bootproto.dhcp.hostnameSet.bs │ │ ├── possitive.network.bootproto.dhcp.nsSet.bs │ │ ├── possitive.network.bootproto.static.bs │ │ ├── possitive.network.bootproto.static.noGW.bs │ │ ├── possitive.network.bootproto.static.noHostname.bs │ │ ├── possitive.network.bootproto.static.noNM.bs │ │ ├── possitive.network.bootproto.static.noNS.bs │ │ ├── possitive.network.bootproto.static.twoNS.bs │ │ ├── possitive.network.device.mac.bs │ │ ├── possitive.network.noBootproto.bs │ │ ├── possitive.network.noDevice.bs │ │ ├── possitive.network.vlanid.bs │ │ ├── possitive.package.good.bs │ │ ├── possitive.package.invalidPackage.bs │ │ ├── possitive.paranoid.bs │ │ ├── possitive.partition.clearedVmfs.bs │ │ ├── possitive.partition.cos.bs │ │ ├── possitive.partition.firstdisk.bs │ │ ├── possitive.partition.firstdisk.fancy.bs │ │ ├── possitive.partition.implicitGrow.bs │ │ ├── possitive.partition.minimal.bs │ │ ├── possitive.partition.noFSType.bs │ │ ├── possitive.partition.vmfsSpace.bs │ │ ├── possitive.post.nochroot.bs │ │ ├── possitive.preSection.bs │ │ ├── possitive.reboot.bs │ │ ├── possitive.reboot.noEject.bs │ │ ├── possitive.rootpw.crypted.bs │ │ ├── possitive.rootpw.invalidCrypt.bs │ │ ├── possitive.rootpw.plaintext.bs │ │ ├── possitive.rootpw.shortPWD.bs │ │ ├── possitive.timezone.bs │ │ ├── possitive.timezone.utc.bs │ │ ├── possitive.virtualdisk.existing.bs │ │ ├── possitive.virtualdisk.firstvmfs.bs │ │ ├── possitive.virtualdisk.minimal.bs │ │ ├── possitive.virtualdisk.path.wdir.bs │ │ ├── possitive.virtualpart.minimal.bs │ │ ├── possitive.vmaccepteula.bs │ │ ├── possitive.vmserialnum.esx.bs │ │ └── possitive.zerombr.bs │ └── files │ │ ├── complex.preparse.arg.default.bs │ │ ├── complex.preparse.arg.invalid.bs │ │ ├── complex.preparse.arg.missing.bs │ │ ├── complex.preparse.arg.space.bs │ │ ├── complex.preparse.auth.badNIS.bs │ │ ├── complex.preparse.auth.noADDomain.bs │ │ ├── complex.preparse.auth.noAuth.bs │ │ ├── complex.preparse.auth.noMD5.bs │ │ ├── complex.preparse.auth.noNIS.bs │ │ ├── complex.preparse.auth.noShadow.bs │ │ ├── complex.preparse.autopart.baddisk.bs │ │ ├── complex.preparse.autopart.noflags.bs │ │ ├── complex.preparse.autostep.bs │ │ ├── complex.preparse.bootloader.MD5AndPlaintxt.bs │ │ ├── complex.preparse.bootloader.invalidDriveorder.bs │ │ ├── complex.preparse.bootloader.invalidLocation.bs │ │ ├── complex.preparse.bootloader.invalidMD5pwd.bs │ │ ├── complex.preparse.bootloader.largepwd.bs │ │ ├── complex.preparse.bootloader.smallpwd.bs │ │ ├── complex.preparse.clearpart.dupdrive.bs │ │ ├── complex.preparse.clearpart.dupignoredrive.bs │ │ ├── complex.preparse.clearpart.invalidDrive.bs │ │ ├── complex.preparse.clearpart.invalidIgnoredrive.bs │ │ ├── complex.preparse.clearpart.nodrives.bs │ │ ├── complex.preparse.cmdline.bs │ │ ├── complex.preparse.device.bs │ │ ├── complex.preparse.deviceprobe.bs │ │ ├── complex.preparse.duplicate.arg.bs │ │ ├── complex.preparse.duplicate.cmd.bs │ │ ├── complex.preparse.esxlocation.baddisk.bs │ │ ├── complex.preparse.esxlocation.badfirst.bs │ │ ├── complex.preparse.esxlocation.baduuid.bs │ │ ├── complex.preparse.esxlocation.clearconflict.bs │ │ ├── complex.preparse.esxlocation.clearconflict2.bs │ │ ├── complex.preparse.esxlocation.partconflict.bs │ │ ├── complex.preparse.esxlocation.partconflict2.bs │ │ ├── complex.preparse.firewall.deprecated.bs │ │ ├── complex.preparse.firewall.invalidDir.bs │ │ ├── complex.preparse.firewall.invalidPort.bs │ │ ├── complex.preparse.firewall.invalidPort2.bs │ │ ├── complex.preparse.firewall.invalidPortName.bs │ │ ├── complex.preparse.firewall.invalidProto.bs │ │ ├── complex.preparse.firewall.invalidService.bs │ │ ├── complex.preparse.firewall.noName.bs │ │ ├── complex.preparse.firewall.noOpenNoClose.bs │ │ ├── complex.preparse.firstboot.bs │ │ ├── complex.preparse.harddrive.bs │ │ ├── complex.preparse.ignoredisk.bs │ │ ├── complex.preparse.include.invalidFilename.bs │ │ ├── complex.preparse.include.maxIncludes.bs │ │ ├── complex.preparse.include.noFilename.bs │ │ ├── complex.preparse.install.extra.bs │ │ ├── complex.preparse.install.nourl.bs │ │ ├── complex.preparse.interactive.bs │ │ ├── complex.preparse.lang.bs │ │ ├── complex.preparse.langsupport.bs │ │ ├── complex.preparse.lilo.bs │ │ ├── complex.preparse.lilocheck.bs │ │ ├── complex.preparse.logvol.bs │ │ ├── complex.preparse.minimal.noNetwork.bs │ │ ├── complex.preparse.minimal.noRootpw.bs │ │ ├── complex.preparse.minimal.noVMaccepteula.bs │ │ ├── complex.preparse.mouse.bs │ │ ├── complex.preparse.network.bootproto.dhcp.gwSet.bs │ │ ├── complex.preparse.network.bootproto.dhcp.hostnameSet.bs │ │ ├── complex.preparse.network.bootproto.dhcp.ipSet.bs │ │ ├── complex.preparse.network.bootproto.dhcp.nmSet.bs │ │ ├── complex.preparse.network.bootproto.dhcp.nsSet.bs │ │ ├── complex.preparse.network.bootproto.static.badNM.bs │ │ ├── complex.preparse.network.bootproto.static.badNS.bs │ │ ├── complex.preparse.network.bootproto.static.noGW.bs │ │ ├── complex.preparse.network.bootproto.static.noHostname.bs │ │ ├── complex.preparse.network.bootproto.static.noIP.bs │ │ ├── complex.preparse.network.bootproto.static.noNM.bs │ │ ├── complex.preparse.network.bootproto.static.noNS.bs │ │ ├── complex.preparse.network.invalidDevice.bs │ │ ├── complex.preparse.network.noBootproto.bs │ │ ├── complex.preparse.packages.invalidPackage.bs │ │ ├── complex.preparse.paranoid.fail.bs │ │ ├── complex.preparse.partition.badMountpoint.bs │ │ ├── complex.preparse.partition.badvmfs.bs │ │ ├── complex.preparse.partition.badvmfs2.bs │ │ ├── complex.preparse.partition.badvmfs3.bs │ │ ├── complex.preparse.partition.goodvmfs.withcolon.bs │ │ ├── complex.preparse.partition.implicitGrow.bs │ │ ├── complex.preparse.partition.invalidDrive.bs │ │ ├── complex.preparse.partition.invalidFSType.bs │ │ ├── complex.preparse.partition.invalidMaxSize.bs │ │ ├── complex.preparse.partition.invalidMount.bs │ │ ├── complex.preparse.partition.invalidSize.bs │ │ ├── complex.preparse.partition.invalidVirtualDisk.bs │ │ ├── complex.preparse.partition.lowMaxSize.bs │ │ ├── complex.preparse.partition.negativeMaxSize.bs │ │ ├── complex.preparse.partition.negativeSize.bs │ │ ├── complex.preparse.partition.noFSType.bs │ │ ├── complex.preparse.partition.noRoot.bs │ │ ├── complex.preparse.partition.nodisk.bs │ │ ├── complex.preparse.partition.notMountable.bs │ │ ├── complex.preparse.partition.notSwap.bs │ │ ├── complex.preparse.partition.tooSmall.bs │ │ ├── complex.preparse.partition.unsupportedDrive.bs │ │ ├── complex.preparse.partition.virtualBoot.bs │ │ ├── complex.preparse.partition.vmkcore.mount.bs │ │ ├── complex.preparse.partition.vmkcore.virt.bs │ │ ├── complex.preparse.post.invalidInterpreter.bs │ │ ├── complex.preparse.pre.invalidInterpreter.bs │ │ ├── complex.preparse.pre.scriptError.bs │ │ ├── complex.preparse.reboot.noEject.bs │ │ ├── complex.preparse.rootpw.invalidCrypt.bs │ │ ├── complex.preparse.rootpw.longPWD.bs │ │ ├── complex.preparse.rootpw.noPWD.bs │ │ ├── complex.preparse.rootpw.shortPWD.bs │ │ ├── complex.preparse.sections.good.bs │ │ ├── complex.preparse.skipx.bs │ │ ├── complex.preparse.text.bs │ │ ├── complex.preparse.timezone.invalidzone.bs │ │ ├── complex.preparse.timezone.nozone.bs │ │ ├── complex.preparse.unknown.arg.bs │ │ ├── complex.preparse.unknown.cmd.bs │ │ ├── complex.preparse.upgrade.bs │ │ ├── complex.preparse.virtualdisk.badname.bs │ │ ├── complex.preparse.virtualdisk.badsize.bs │ │ ├── complex.preparse.virtualdisk.badsize2.bs │ │ ├── complex.preparse.virtualdisk.big.disk.bs │ │ ├── complex.preparse.virtualdisk.repeat.bs │ │ ├── complex.preparse.virtualdisk.unknownvmfs.bs │ │ ├── complex.preparse.vmserialnum.badformat.bs │ │ ├── complex.preparse.vmserialnum.badkey.bs │ │ ├── complex.preparse.vnc.bs │ │ ├── complex.preparse.volgroup.bs │ │ ├── complex.preparse.xconfig.bs │ │ ├── complex.preparse.xdisplay.bs │ │ ├── possitive.minimal.bs │ │ ├── possitive.minimal.warn.bs │ │ ├── scui.abort.bootcmdline.bs │ │ ├── scui.abort.post.bs │ │ ├── scui.adauth.domain.bs │ │ ├── scui.autopart.vmfs.bs │ │ ├── scui.autopart.vmfs.path.bs │ │ ├── scui.basic.bs │ │ ├── scui.basic.noequals.bs │ │ ├── scui.clearks.bs │ │ ├── scui.cpioerror.bs │ │ ├── scui.dogfood.bs │ │ ├── scui.dryrun.bs │ │ ├── scui.esxlocation.bs │ │ ├── scui.firewall.bs │ │ ├── scui.installiso.bs │ │ ├── scui.installurl.bs │ │ ├── scui.license.expired │ │ ├── scui.mountMedia.bs │ │ ├── scui.multiscript.bs │ │ ├── scui.network.bootif.bs │ │ ├── scui.nofirstdisk.bs │ │ ├── scui.nonics.bs │ │ ├── scui.nopost.bs │ │ ├── scui.packages.bs │ │ ├── scui.timedate.bs │ │ ├── scui.upgrade.bs │ │ ├── scui.upgrade.combined-boot-root.bs │ │ ├── scui.upgrade.grub-on-boot.bs │ │ ├── scui.upgrade.nomigrate.bs │ │ ├── simple.preparse.auth.disableMD5.bs │ │ ├── simple.preparse.auth.disableShadow.bs │ │ ├── simple.preparse.auth.enableKRB5.bs │ │ ├── simple.preparse.auth.enableLDAP.bs │ │ ├── simple.preparse.auth.enableLDAPAuth.bs │ │ ├── simple.preparse.auth.enableMD5.bs │ │ ├── simple.preparse.auth.enableNIS.bs │ │ ├── simple.preparse.auth.enableShadow.bs │ │ ├── simple.preparse.autopart.cciss.bs │ │ ├── simple.preparse.autopart.disk.bs │ │ ├── simple.preparse.autopart.drive.bs │ │ ├── simple.preparse.autopart.firstdisk.bs │ │ ├── simple.preparse.autopart.vml.bs │ │ ├── simple.preparse.badQuoting.bs │ │ ├── simple.preparse.bootloader.append.bs │ │ ├── simple.preparse.bootloader.driveorder.bs │ │ ├── simple.preparse.bootloader.location.none.bs │ │ ├── simple.preparse.bootloader.location.partition.bs │ │ ├── simple.preparse.bootloader.md5pwd.bs │ │ ├── simple.preparse.bootloader.nolocation.bs │ │ ├── simple.preparse.bootloader.pwd.bs │ │ ├── simple.preparse.bootloader.upgrade.bs │ │ ├── simple.preparse.clearpart.all.bs │ │ ├── simple.preparse.clearpart.alldrives.bs │ │ ├── simple.preparse.clearpart.drives.bs │ │ ├── simple.preparse.clearpart.drives.multiple.bs │ │ ├── simple.preparse.clearpart.ignoredrives.bs │ │ ├── simple.preparse.clearpart.initlabel.bs │ │ ├── simple.preparse.comment.bs │ │ ├── simple.preparse.defaults.bs │ │ ├── simple.preparse.firewall.allowIncoming.bs │ │ ├── simple.preparse.firewall.blockOutgoing.bs │ │ ├── simple.preparse.firewall.enabled.bs │ │ ├── simple.preparse.firewallport.close.bs │ │ ├── simple.preparse.firewallport.multiple.bs │ │ ├── simple.preparse.firewallport.open.bs │ │ ├── simple.preparse.install.baddir.bs │ │ ├── simple.preparse.install.cdrom.bs │ │ ├── simple.preparse.install.default.bs │ │ ├── simple.preparse.install.ftp.bs │ │ ├── simple.preparse.install.http.bs │ │ ├── simple.preparse.install.nfs.bs │ │ ├── simple.preparse.keyboard.bad.bs │ │ ├── simple.preparse.keyboard.bs │ │ ├── simple.preparse.network.addvmportgroup.bs │ │ ├── simple.preparse.network.bootproto.dhcp.bs │ │ ├── simple.preparse.network.bootproto.static.bs │ │ ├── simple.preparse.network.bootproto.static.twoNS.bs │ │ ├── simple.preparse.network.device.mac.bs │ │ ├── simple.preparse.network.noDevice.bs │ │ ├── simple.preparse.network.vlanid.bs │ │ ├── simple.preparse.package.good.bs │ │ ├── simple.preparse.package.invalidPackage.bs │ │ ├── simple.preparse.paranoid.bs │ │ ├── simple.preparse.partition.clearedVmfs.bs │ │ ├── simple.preparse.partition.firstdisk.bs │ │ ├── simple.preparse.partition.firstdisk.fancy.bs │ │ ├── simple.preparse.partition.minimal.bs │ │ ├── simple.preparse.partition.vmfsSpace.bs │ │ ├── simple.preparse.postsection.bs │ │ ├── simple.preparse.postsection.dos.bs │ │ ├── simple.preparse.presection.bs │ │ ├── simple.preparse.quoting.bs │ │ ├── simple.preparse.reboot.bs │ │ ├── simple.preparse.rootpw.crypted.bs │ │ ├── simple.preparse.rootpw.impliedMD5.bs │ │ ├── simple.preparse.rootpw.plaintext.bs │ │ ├── simple.preparse.timezone.bs │ │ ├── simple.preparse.timezone.utc.bs │ │ ├── simple.preparse.upgrade.bs │ │ ├── simple.preparse.virtualdisk.firstvmfs.bs │ │ ├── simple.preparse.virtualdisk.minimal.bs │ │ ├── simple.preparse.virtualdisk.path.wdir.bs │ │ ├── simple.preparse.virtualpart.minimal.bs │ │ ├── simple.preparse.vmaccepteula.bs │ │ ├── simple.preparse.vmserialnum.esx.bs │ │ └── simple.preparse.zerombr.bs ├── skip_to_step.py ├── test_boot_cmdline.py ├── test_cosmem.py ├── test_driversxml.py ├── test_esx4upgrade.py ├── test_exit.py ├── test_fstab.py ├── test_grubupdate.py ├── test_gui.py ├── test_iscsi.py ├── test_log.py ├── test_migrateNtp.py ├── test_migrateServices.py ├── test_network.py ├── test_partitions.py ├── test_precheck.py ├── test_regexlocator.py ├── test_remotefiles.py ├── test_review.py ├── test_script.py ├── test_scriptedinstall.py ├── test_task_progress.py ├── test_text.py ├── test_timezone.py ├── test_userchoices.py ├── test_users.py ├── textui_test │ ├── negative.advparts.modparts │ ├── negative.cosnetworkadapter.settings │ ├── negative.install.cpioerror │ ├── negative.nfsmedia.badserver │ ├── negative.usbmedia.nopackages │ ├── positive.advpart.modparts │ ├── positive.bootloader │ ├── positive.cosnic.simple │ ├── positive.ftpmedia.errshelp │ ├── positive.install │ ├── positive.install.cosnetback │ ├── positive.install.errsexits │ ├── positive.keyboard.list │ ├── positive.password │ ├── positive.timedate.errshelp │ ├── positive.timedate.manual │ ├── positive.usbmedia.basic │ ├── positive.usbmedia.eject │ ├── positive.usbmedia.rescan │ └── sessions_test │ │ ├── __init__.py │ │ ├── sessions.py │ │ ├── test_eula.py │ │ ├── test_testenv.py │ │ ├── test_welcome.py │ │ └── test_welcome_errs.py └── upgrade │ ├── fstab.mig.0 │ ├── fstab.new.0 │ ├── fstab.old.0 │ ├── group.mig.0 │ ├── group.new.0 │ ├── group.old.0 │ ├── lspci.unsupported │ ├── ntp.conf.0 │ ├── ntp.conf.1 │ ├── passwd.0 │ ├── passwd.mig.0 │ ├── passwd.new.0 │ ├── passwd.old.0 │ ├── precheck-cpuinfo.0 │ ├── precheck-cpuinfo.1 │ ├── precheck-esxconf.xml │ ├── precheck-failures.xml │ ├── precheck-mem.xml │ ├── precheck-noesxconf.xml │ ├── precheck-unsupported-pci.xml │ ├── precheck.0.xml │ ├── precheck.allfail.xml │ ├── precheck.fail.xml │ ├── remove-after.0 │ ├── remove-before.0 │ ├── results.0.xml │ ├── services │ ├── shadow.old.0 │ ├── time │ ├── time-udp │ ├── upgrade.0.ks │ ├── vmInventory-old.xml │ ├── vmInventory.xml │ ├── vmware-authd │ ├── xinetd.conf.0 │ └── xinetd.conf.1 ├── textui ├── __init__.py ├── bootloader_ui.py ├── cosnetworkadapter_ui.py ├── customdrivers_ui.py ├── datastore_ui.py ├── esxlocation_ui.py ├── eula_ui.py ├── finished_ui.py ├── installation_ui.py ├── installmedia_ui.py ├── keyboard_ui.py ├── license_ui.py ├── main.py ├── network_address_setup.py ├── nic_setup.py ├── partsetupchoice_ui.py ├── password_ui.py ├── review_ui.py ├── setupvmdk_ui.py ├── storage_utils.py ├── textengine.py ├── textrunner.py ├── timedate_ui.py ├── timezone_ui.py └── welcome_ui.py ├── tidy.py ├── timedate.py ├── timezone.py ├── timezone.xml ├── usbmedia.py ├── userchoices.py ├── users.py ├── util ├── Makefile ├── __init__.py ├── _util.py ├── dumpuuid.c ├── libutil.so └── utilmodule.c ├── vua-standin.sh ├── weasel.py ├── weasel.xml └── workarounds.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/README.md -------------------------------------------------------------------------------- /applychoices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/applychoices.py -------------------------------------------------------------------------------- /boot_cmdline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/boot_cmdline.py -------------------------------------------------------------------------------- /bootloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/bootloader.py -------------------------------------------------------------------------------- /brandiso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/brandiso.py -------------------------------------------------------------------------------- /cdutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/cdutil.py -------------------------------------------------------------------------------- /consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/consts.py -------------------------------------------------------------------------------- /createinstdepot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/createinstdepot.py -------------------------------------------------------------------------------- /customdrivers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/customdrivers.py -------------------------------------------------------------------------------- /datastore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/datastore.py -------------------------------------------------------------------------------- /debugging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/debugging.py -------------------------------------------------------------------------------- /devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/devices.py -------------------------------------------------------------------------------- /dispatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/dispatch.py -------------------------------------------------------------------------------- /drivereula.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/drivereula.txt -------------------------------------------------------------------------------- /esxcfg-py/esxcfg-nics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/esxcfg-py/esxcfg-nics.py -------------------------------------------------------------------------------- /esxcfg-py/esxcfg-vswitch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/esxcfg-py/esxcfg-vswitch.py -------------------------------------------------------------------------------- /esxconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/esxconf.py -------------------------------------------------------------------------------- /esxlicense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/esxlicense.py -------------------------------------------------------------------------------- /eula.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/eula.txt -------------------------------------------------------------------------------- /examples/ks-10g-cos.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/examples/ks-10g-cos.cfg -------------------------------------------------------------------------------- /examples/ks-cciss.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/examples/ks-cciss.cfg -------------------------------------------------------------------------------- /examples/ks-first-safe.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/examples/ks-first-safe.cfg -------------------------------------------------------------------------------- /examples/ks-first.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/examples/ks-first.cfg -------------------------------------------------------------------------------- /examples/ks-save-vmfs.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/examples/ks-save-vmfs.cfg -------------------------------------------------------------------------------- /exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/exception.py -------------------------------------------------------------------------------- /firewall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/firewall.py -------------------------------------------------------------------------------- /fsset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/fsset.py -------------------------------------------------------------------------------- /fstab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/fstab.py -------------------------------------------------------------------------------- /grubupdate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/grubupdate.py -------------------------------------------------------------------------------- /gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui.py -------------------------------------------------------------------------------- /gui/bootloader_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/bootloader_gui.py -------------------------------------------------------------------------------- /gui/common_windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/common_windows.py -------------------------------------------------------------------------------- /gui/cosnetwork_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/cosnetwork_gui.py -------------------------------------------------------------------------------- /gui/cosnetworkadapter_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/cosnetworkadapter_gui.py -------------------------------------------------------------------------------- /gui/customdrivers_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/customdrivers_gui.py -------------------------------------------------------------------------------- /gui/datastore_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/datastore_gui.py -------------------------------------------------------------------------------- /gui/driverload_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/driverload_gui.py -------------------------------------------------------------------------------- /gui/esxlocation_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/esxlocation_gui.py -------------------------------------------------------------------------------- /gui/eula_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/eula_gui.py -------------------------------------------------------------------------------- /gui/finished_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/finished_gui.py -------------------------------------------------------------------------------- /gui/ftpmedia_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/ftpmedia_gui.py -------------------------------------------------------------------------------- /gui/glade/addpartition.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/glade/addpartition.glade -------------------------------------------------------------------------------- /gui/glade/advancedoptions.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/glade/advancedoptions.glade -------------------------------------------------------------------------------- /gui/glade/advancedpartitioning.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/glade/advancedpartitioning.glade -------------------------------------------------------------------------------- /gui/glade/bootloader.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/glade/bootloader.glade -------------------------------------------------------------------------------- /gui/glade/cosnetwork.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/glade/cosnetwork.glade -------------------------------------------------------------------------------- /gui/glade/cosnetworkadapter.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/glade/cosnetworkadapter.glade -------------------------------------------------------------------------------- /gui/glade/customdrivers.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/glade/customdrivers.glade -------------------------------------------------------------------------------- /gui/glade/datastore.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/glade/datastore.glade -------------------------------------------------------------------------------- /gui/glade/driverload.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/glade/driverload.glade -------------------------------------------------------------------------------- /gui/glade/esxlocation.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/glade/esxlocation.glade -------------------------------------------------------------------------------- /gui/glade/eula.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/glade/eula.glade -------------------------------------------------------------------------------- /gui/glade/exception.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/glade/exception.glade -------------------------------------------------------------------------------- /gui/glade/finished.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/glade/finished.glade -------------------------------------------------------------------------------- /gui/glade/ftpmedia.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/glade/ftpmedia.glade -------------------------------------------------------------------------------- /gui/glade/httpmedia.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/glade/httpmedia.glade -------------------------------------------------------------------------------- /gui/glade/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/glade/icon.png -------------------------------------------------------------------------------- /gui/glade/installation.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/glade/installation.glade -------------------------------------------------------------------------------- /gui/glade/installlocation.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/glade/installlocation.glade -------------------------------------------------------------------------------- /gui/glade/installmedia.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/glade/installmedia.glade -------------------------------------------------------------------------------- /gui/glade/iscsinetwork.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/glade/iscsinetwork.glade -------------------------------------------------------------------------------- /gui/glade/iscsisetup.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/glade/iscsisetup.glade -------------------------------------------------------------------------------- /gui/glade/keyboard.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/glade/keyboard.glade -------------------------------------------------------------------------------- /gui/glade/license.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/glade/license.glade -------------------------------------------------------------------------------- /gui/glade/mouse.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/glade/mouse.glade -------------------------------------------------------------------------------- /gui/glade/nfsmedia.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/glade/nfsmedia.glade -------------------------------------------------------------------------------- /gui/glade/progress_dialog.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/glade/progress_dialog.glade -------------------------------------------------------------------------------- /gui/glade/review.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/glade/review.glade -------------------------------------------------------------------------------- /gui/glade/rootpassword.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/glade/rootpassword.glade -------------------------------------------------------------------------------- /gui/glade/setupchoice.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/glade/setupchoice.glade -------------------------------------------------------------------------------- /gui/glade/setupvmdk.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/glade/setupvmdk.glade -------------------------------------------------------------------------------- /gui/glade/storage-widgets.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/glade/storage-widgets.glade -------------------------------------------------------------------------------- /gui/glade/timedate.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/glade/timedate.glade -------------------------------------------------------------------------------- /gui/glade/timezone.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/glade/timezone.glade -------------------------------------------------------------------------------- /gui/glade/topbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/glade/topbar.png -------------------------------------------------------------------------------- /gui/glade/usbmedia.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/glade/usbmedia.glade -------------------------------------------------------------------------------- /gui/glade/vmfspartitioning.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/glade/vmfspartitioning.glade -------------------------------------------------------------------------------- /gui/glade/weasel.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/glade/weasel.glade -------------------------------------------------------------------------------- /gui/glade/welcome.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/glade/welcome.glade -------------------------------------------------------------------------------- /gui/glade/welcomepanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/glade/welcomepanel.png -------------------------------------------------------------------------------- /gui/htmltextview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/htmltextview.py -------------------------------------------------------------------------------- /gui/httpmedia_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/httpmedia_gui.py -------------------------------------------------------------------------------- /gui/images/abouttoinstall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/abouttoinstall.png -------------------------------------------------------------------------------- /gui/images/adminpassword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/adminpassword.png -------------------------------------------------------------------------------- /gui/images/boot-loader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/boot-loader.png -------------------------------------------------------------------------------- /gui/images/connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/connected.png -------------------------------------------------------------------------------- /gui/images/customdrivers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/customdrivers.png -------------------------------------------------------------------------------- /gui/images/datastore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/datastore.png -------------------------------------------------------------------------------- /gui/images/disconnected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/disconnected.png -------------------------------------------------------------------------------- /gui/images/drive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/drive.png -------------------------------------------------------------------------------- /gui/images/driverloading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/driverloading.png -------------------------------------------------------------------------------- /gui/images/eula.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/eula.png -------------------------------------------------------------------------------- /gui/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/icon.png -------------------------------------------------------------------------------- /gui/images/installing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/installing.png -------------------------------------------------------------------------------- /gui/images/keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/keyboard.png -------------------------------------------------------------------------------- /gui/images/license.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/license.png -------------------------------------------------------------------------------- /gui/images/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/loading.png -------------------------------------------------------------------------------- /gui/images/map/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/background.png -------------------------------------------------------------------------------- /gui/images/map/city_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/city_hover.png -------------------------------------------------------------------------------- /gui/images/map/city_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/city_idle.png -------------------------------------------------------------------------------- /gui/images/map/city_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/city_pressed.png -------------------------------------------------------------------------------- /gui/images/map/city_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/city_sel.png -------------------------------------------------------------------------------- /gui/images/map/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/map.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTC000_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTC000_sel.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCm0100_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCm0100_hover.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCm0100_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCm0100_idle.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCm0100_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCm0100_pressed.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCm0100_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCm0100_sel.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCm0200_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCm0200_hover.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCm0200_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCm0200_idle.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCm0200_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCm0200_pressed.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCm0200_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCm0200_sel.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCm0300_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCm0300_hover.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCm0300_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCm0300_idle.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCm0300_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCm0300_pressed.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCm0300_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCm0300_sel.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCm0400_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCm0400_hover.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCm0400_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCm0400_idle.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCm0400_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCm0400_pressed.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCm0400_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCm0400_sel.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCm0500_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCm0500_hover.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCm0500_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCm0500_idle.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCm0500_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCm0500_pressed.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCm0500_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCm0500_sel.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCm0600_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCm0600_hover.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCm0600_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCm0600_idle.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCm0600_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCm0600_pressed.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCm0600_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCm0600_sel.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCm0700_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCm0700_hover.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCm0700_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCm0700_idle.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCm0700_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCm0700_pressed.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCm0700_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCm0700_sel.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCm0800_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCm0800_hover.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCm0800_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCm0800_idle.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCm0800_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCm0800_pressed.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCm0800_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCm0800_sel.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCm0900_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCm0900_hover.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCm0900_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCm0900_idle.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCm0900_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCm0900_pressed.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCm0900_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCm0900_sel.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCm1000_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCm1000_hover.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCm1000_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCm1000_idle.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCm1000_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCm1000_pressed.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCm1000_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCm1000_sel.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCm1100_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCm1100_hover.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCm1100_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCm1100_idle.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCm1100_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCm1100_pressed.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCm1100_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCm1100_sel.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCm1200_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCm1200_hover.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCm1200_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCm1200_idle.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCm1200_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCm1200_pressed.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCm1200_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCm1200_sel.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp0000_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp0000_hover.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp0000_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp0000_idle.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp0000_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp0000_pressed.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp0000_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp0000_sel.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp0100_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp0100_hover.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp0100_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp0100_idle.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp0100_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp0100_pressed.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp0100_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp0100_sel.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp0200_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp0200_hover.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp0200_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp0200_idle.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp0200_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp0200_pressed.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp0200_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp0200_sel.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp0300_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp0300_hover.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp0300_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp0300_idle.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp0300_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp0300_pressed.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp0300_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp0300_sel.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp0400_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp0400_hover.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp0400_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp0400_idle.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp0400_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp0400_pressed.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp0400_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp0400_sel.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp0500_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp0500_hover.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp0500_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp0500_idle.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp0500_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp0500_pressed.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp0500_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp0500_sel.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp0600_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp0600_hover.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp0600_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp0600_idle.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp0600_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp0600_pressed.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp0600_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp0600_sel.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp0700_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp0700_hover.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp0700_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp0700_idle.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp0700_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp0700_pressed.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp0700_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp0700_sel.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp0800_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp0800_hover.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp0800_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp0800_idle.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp0800_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp0800_pressed.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp0800_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp0800_sel.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp0900_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp0900_hover.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp0900_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp0900_idle.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp0900_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp0900_pressed.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp0900_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp0900_sel.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp1000_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp1000_hover.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp1000_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp1000_idle.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp1000_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp1000_pressed.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp1000_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp1000_sel.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp1100_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp1100_hover.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp1100_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp1100_idle.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp1100_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp1100_pressed.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp1100_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp1100_sel.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp1200_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp1200_hover.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp1200_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp1200_idle.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp1200_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp1200_pressed.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp1200_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp1200_sel.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp1300_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp1300_hover.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp1300_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp1300_idle.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp1300_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp1300_pressed.png -------------------------------------------------------------------------------- /gui/images/map/zone_slices/UTCp1300_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/map/zone_slices/UTCp1300_sel.png -------------------------------------------------------------------------------- /gui/images/mediaselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/mediaselect.png -------------------------------------------------------------------------------- /gui/images/network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/network.png -------------------------------------------------------------------------------- /gui/images/network_configure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/network_configure.png -------------------------------------------------------------------------------- /gui/images/network_media.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/network_media.png -------------------------------------------------------------------------------- /gui/images/networkadapter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/networkadapter.png -------------------------------------------------------------------------------- /gui/images/partitioning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/partitioning.png -------------------------------------------------------------------------------- /gui/images/setuptype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/setuptype.png -------------------------------------------------------------------------------- /gui/images/timedate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/timedate.png -------------------------------------------------------------------------------- /gui/images/timezone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/timezone.png -------------------------------------------------------------------------------- /gui/images/usb_cd_media.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/images/usb_cd_media.png -------------------------------------------------------------------------------- /gui/installation_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/installation_gui.py -------------------------------------------------------------------------------- /gui/installlocation_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/installlocation_gui.py -------------------------------------------------------------------------------- /gui/installmedia_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/installmedia_gui.py -------------------------------------------------------------------------------- /gui/ip_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/ip_entry.py -------------------------------------------------------------------------------- /gui/iscsi_detour.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/iscsi_detour.py -------------------------------------------------------------------------------- /gui/iscsinetwork_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/iscsinetwork_gui.py -------------------------------------------------------------------------------- /gui/iscsisetup_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/iscsisetup_gui.py -------------------------------------------------------------------------------- /gui/keyboard_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/keyboard_gui.py -------------------------------------------------------------------------------- /gui/license_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/license_gui.py -------------------------------------------------------------------------------- /gui/network_address_widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/network_address_widgets.py -------------------------------------------------------------------------------- /gui/nfsmedia_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/nfsmedia_gui.py -------------------------------------------------------------------------------- /gui/nic_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/nic_setup.py -------------------------------------------------------------------------------- /gui/password_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/password_gui.py -------------------------------------------------------------------------------- /gui/review_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/review_gui.py -------------------------------------------------------------------------------- /gui/setupchoice_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/setupchoice_gui.py -------------------------------------------------------------------------------- /gui/setupvmdk_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/setupvmdk_gui.py -------------------------------------------------------------------------------- /gui/signalconnect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/signalconnect.py -------------------------------------------------------------------------------- /gui/storage_widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/storage_widgets.py -------------------------------------------------------------------------------- /gui/timedate_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/timedate_gui.py -------------------------------------------------------------------------------- /gui/timezone_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/timezone_gui.py -------------------------------------------------------------------------------- /gui/usbmedia_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/usbmedia_gui.py -------------------------------------------------------------------------------- /gui/welcome_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/gui/welcome_gui.py -------------------------------------------------------------------------------- /iscsi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/iscsi.py -------------------------------------------------------------------------------- /isolinux.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/isolinux.cfg -------------------------------------------------------------------------------- /keyboard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/keyboard.xml -------------------------------------------------------------------------------- /ks-upgrade.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/ks-upgrade.cfg -------------------------------------------------------------------------------- /ks.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/ks.cfg -------------------------------------------------------------------------------- /log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/log.py -------------------------------------------------------------------------------- /media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/media.py -------------------------------------------------------------------------------- /migrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/migrate.py -------------------------------------------------------------------------------- /migration/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/migration/__init__.py -------------------------------------------------------------------------------- /migration/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/migration/handlers.py -------------------------------------------------------------------------------- /migration/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/migration/services.py -------------------------------------------------------------------------------- /migration/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/migration/simple.py -------------------------------------------------------------------------------- /mouse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/mouse.xml -------------------------------------------------------------------------------- /networking/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/networking/__init__.py -------------------------------------------------------------------------------- /networking/host_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/networking/host_config.py -------------------------------------------------------------------------------- /networking/networking_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/networking/networking_base.py -------------------------------------------------------------------------------- /networking/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/networking/utils.py -------------------------------------------------------------------------------- /packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/packages.py -------------------------------------------------------------------------------- /partition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/partition.py -------------------------------------------------------------------------------- /pciidlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/pciidlib.py -------------------------------------------------------------------------------- /precheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/precheck.py -------------------------------------------------------------------------------- /regexlocator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/regexlocator.py -------------------------------------------------------------------------------- /remote_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/remote_files.py -------------------------------------------------------------------------------- /review.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/review.py -------------------------------------------------------------------------------- /script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/script.py -------------------------------------------------------------------------------- /scriptedinstall/example.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/scriptedinstall/example.bs -------------------------------------------------------------------------------- /scriptedinstall/grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/scriptedinstall/grammar.py -------------------------------------------------------------------------------- /scriptedinstall/preparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/scriptedinstall/preparser.py -------------------------------------------------------------------------------- /scriptedinstall/scriptedinstallfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/scriptedinstall/scriptedinstallfile.py -------------------------------------------------------------------------------- /scriptedinstall/scriptedinstallutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/scriptedinstall/scriptedinstallutil.py -------------------------------------------------------------------------------- /scriptedinstall/scriptwriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/scriptedinstall/scriptwriter.py -------------------------------------------------------------------------------- /scriptedinstall/sui/errors_scui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/scriptedinstall/sui/errors_scui.py -------------------------------------------------------------------------------- /scui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/scui.py -------------------------------------------------------------------------------- /services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/services.py -------------------------------------------------------------------------------- /singleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/singleton.py -------------------------------------------------------------------------------- /startx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/startx.py -------------------------------------------------------------------------------- /systemsettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/systemsettings.py -------------------------------------------------------------------------------- /task_progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/task_progress.py -------------------------------------------------------------------------------- /test/caged_weasel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/caged_weasel.py -------------------------------------------------------------------------------- /test/docage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/docage.py -------------------------------------------------------------------------------- /test/drivers/drivers.bad.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/drivers/drivers.bad.xml -------------------------------------------------------------------------------- /test/drivers/drivers.bad.xml-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/drivers/drivers.bad.xml-2 -------------------------------------------------------------------------------- /test/drivers/drivers.bad.xml-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/drivers/drivers.bad.xml-3 -------------------------------------------------------------------------------- /test/drivers/drivers.bad.xml-4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/drivers/drivers.bad.xml-4 -------------------------------------------------------------------------------- /test/drivers/drivers.bad.xml-5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/drivers/drivers.bad.xml-5 -------------------------------------------------------------------------------- /test/drivers/drivers.bad.xml-6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/drivers/drivers.bad.xml-6 -------------------------------------------------------------------------------- /test/drivers/drivers.bad.xml-7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/drivers/drivers.bad.xml-7 -------------------------------------------------------------------------------- /test/drivers/drivers.bad.xml-8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/drivers/drivers.bad.xml-8 -------------------------------------------------------------------------------- /test/drivers/drivers.bad.xml-9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/drivers/drivers.bad.xml-9 -------------------------------------------------------------------------------- /test/drivers/drivers.good.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/drivers/drivers.good.xml -------------------------------------------------------------------------------- /test/drivers/drivers.good.xml-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/drivers/drivers.good.xml-2 -------------------------------------------------------------------------------- /test/faux/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/faux/README -------------------------------------------------------------------------------- /test/faux/fauxTextuiIO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/faux/fauxTextuiIO.py -------------------------------------------------------------------------------- /test/faux/fauxlocations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/faux/fauxlocations.py -------------------------------------------------------------------------------- /test/faux/fauxroot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/faux/fauxroot.py -------------------------------------------------------------------------------- /test/faux/parted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/faux/parted.py -------------------------------------------------------------------------------- /test/faux/rpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/faux/rpm.py -------------------------------------------------------------------------------- /test/faux/vmkctl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/faux/vmkctl.py -------------------------------------------------------------------------------- /test/finddirsizes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/finddirsizes.py -------------------------------------------------------------------------------- /test/good-config.1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/good-config.1/README -------------------------------------------------------------------------------- /test/good-config.1/bin/vmware/vmkfstools: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /test/good-config.1/bin/vmware/vsd: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | 3 | echo "/dev/sdc" 4 | -------------------------------------------------------------------------------- /test/good-config.1/dev/cdrom: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/dev/hda: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/dev/hda1: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/dev/hda2: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/dev/sdd1: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/etc/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/good-config.1/etc/hosts -------------------------------------------------------------------------------- /test/good-config.1/etc/mtab: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/good-config.1/etc/resolv.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/good-config.1/etc/resolv.conf -------------------------------------------------------------------------------- /test/good-config.1/etc/sysconfig/network: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/etc/vmware/esx.conf: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/etc/vmware/init/init.d/14.foobar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/good-config.1/etc/vmware/init/init.d/71.bogusipmi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/good-config.1/fauxconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/good-config.1/fauxconfig.py -------------------------------------------------------------------------------- /test/good-config.1/home/empty: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/lib/kbd/keymaps/i386/azerty/be-latin1.map.gz: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/lib/kbd/keymaps/i386/azerty/fr-latin1.map.gz: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/lib/kbd/keymaps/i386/azerty/fr-latin9.map.gz: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/lib/kbd/keymaps/i386/azerty/fr-pc.map.gz: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/lib/kbd/keymaps/i386/dvorak/dvorak.map.gz: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/lib/kbd/keymaps/i386/qwerty/br-abnt2.map.gz: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/lib/kbd/keymaps/i386/qwerty/cz-lat2.map.gz: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/lib/kbd/keymaps/i386/qwerty/dk-latin1.map.gz: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/lib/kbd/keymaps/i386/qwerty/dk.map.gz: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/lib/kbd/keymaps/i386/qwerty/es.map.gz: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/lib/kbd/keymaps/i386/qwerty/et.map.gz: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/lib/kbd/keymaps/i386/qwerty/fi-latin1.map.gz: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/lib/kbd/keymaps/i386/qwerty/fi.map.gz: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/lib/kbd/keymaps/i386/qwerty/gr.map.gz: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/lib/kbd/keymaps/i386/qwerty/is-latin1.map.gz: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/lib/kbd/keymaps/i386/qwerty/it-ibm.map.gz: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/lib/kbd/keymaps/i386/qwerty/it.map.gz: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/lib/kbd/keymaps/i386/qwerty/it2.map.gz: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/lib/kbd/keymaps/i386/qwerty/jp106.map.gz: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/lib/kbd/keymaps/i386/qwerty/la-latin1.map.gz: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/lib/kbd/keymaps/i386/qwerty/mk-utf.map.gz: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/lib/kbd/keymaps/i386/qwerty/nl.map.gz: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/lib/kbd/keymaps/i386/qwerty/no.map.gz: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/lib/kbd/keymaps/i386/qwerty/pl2.map.gz: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/lib/kbd/keymaps/i386/qwerty/pt-latin1.map.gz: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/lib/kbd/keymaps/i386/qwerty/ro_win.map.gz: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/lib/kbd/keymaps/i386/qwerty/ru-cp1251.map.gz: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/lib/kbd/keymaps/i386/qwerty/ru-ms.map.gz: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/lib/kbd/keymaps/i386/qwerty/ru.map.gz: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/lib/kbd/keymaps/i386/qwerty/sv-latin1.map.gz: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/lib/kbd/keymaps/i386/qwerty/trq.map.gz: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/lib/kbd/keymaps/i386/qwerty/ua-utf.map.gz: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/lib/kbd/keymaps/i386/qwerty/uk.map.gz: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/lib/kbd/keymaps/i386/qwerty/us-acentos.map.gz: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/lib/kbd/keymaps/i386/qwerty/us.map.gz: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/lib/kbd/keymaps/i386/qwertz/croat.map.gz: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/lib/kbd/keymaps/i386/qwertz/cz-us-qwertz.map.gz: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/lib/kbd/keymaps/i386/qwertz/de-latin1-nodeadkeys.map.gz: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/lib/kbd/keymaps/i386/qwertz/de-latin1.map.gz: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/lib/kbd/keymaps/i386/qwertz/de.map.gz: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/lib/kbd/keymaps/i386/qwertz/slovene.map.gz: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/mnt/cdrom/isoinfo: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/mnt/cdrom/isolinux/initrd.img: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/mnt/source/VMware/RPMS/packageData.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/good-config.1/mnt/source/VMware/RPMS/packageData.pkl -------------------------------------------------------------------------------- /test/good-config.1/mnt/source/VMware/RPMS/primary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/good-config.1/mnt/source/VMware/RPMS/primary.xml -------------------------------------------------------------------------------- /test/good-config.1/mnt/source/metadata.zip: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/mnt/source/packages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/good-config.1/mnt/source/packages.xml -------------------------------------------------------------------------------- /test/good-config.1/mnt/sysimage/boot/grub/grub.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/good-config.1/mnt/sysimage/boot/grub/grub.conf -------------------------------------------------------------------------------- /test/good-config.1/mnt/sysimage/esx3-installation/etc/fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/good-config.1/mnt/sysimage/esx3-installation/etc/fstab -------------------------------------------------------------------------------- /test/good-config.1/mnt/sysimage/esx3-installation/etc/group: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/good-config.1/mnt/sysimage/esx3-installation/etc/group -------------------------------------------------------------------------------- /test/good-config.1/mnt/sysimage/esx3-installation/etc/gshadow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/good-config.1/mnt/sysimage/esx3-installation/etc/gshadow -------------------------------------------------------------------------------- /test/good-config.1/mnt/sysimage/esx3-installation/etc/motd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/good-config.1/mnt/sysimage/esx3-installation/etc/motd -------------------------------------------------------------------------------- /test/good-config.1/mnt/sysimage/esx3-installation/etc/passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/good-config.1/mnt/sysimage/esx3-installation/etc/passwd -------------------------------------------------------------------------------- /test/good-config.1/mnt/sysimage/esx3-installation/etc/shadow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/good-config.1/mnt/sysimage/esx3-installation/etc/shadow -------------------------------------------------------------------------------- /test/good-config.1/mnt/sysimage/etc/group: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/good-config.1/mnt/sysimage/etc/group -------------------------------------------------------------------------------- /test/good-config.1/mnt/sysimage/etc/passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/good-config.1/mnt/sysimage/etc/passwd -------------------------------------------------------------------------------- /test/good-config.1/mnt/sysimage/etc/shadow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/good-config.1/mnt/sysimage/etc/shadow -------------------------------------------------------------------------------- /test/good-config.1/mnt/sysimage/etc/skel/.bashrc: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/mnt/sysimage/root/empty: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/mnt/sysimage/usr/share/grub/x86_64-redhat/e2fs_stage1_5: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/mnt/sysimage/usr/share/grub/x86_64-redhat/fat_stage1_5: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/mnt/sysimage/usr/share/grub/x86_64-redhat/ffs_stage1_5: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/mnt/sysimage/usr/share/grub/x86_64-redhat/iso9660_stage1_5: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/mnt/sysimage/usr/share/grub/x86_64-redhat/jfs_stage1_5: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/mnt/sysimage/usr/share/grub/x86_64-redhat/minix_stage1_5: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/mnt/sysimage/usr/share/grub/x86_64-redhat/reiserfs_stage1_5: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/mnt/sysimage/usr/share/grub/x86_64-redhat/stage1: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/mnt/sysimage/usr/share/grub/x86_64-redhat/stage2: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/mnt/sysimage/usr/share/grub/x86_64-redhat/stage2_eltorito: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/mnt/sysimage/usr/share/grub/x86_64-redhat/ufs2_stage1_5: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/mnt/sysimage/usr/share/grub/x86_64-redhat/vstatfs_stage1_5: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/mnt/sysimage/usr/share/grub/x86_64-redhat/xfs_stage1_5: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/proc/cmdline: -------------------------------------------------------------------------------- 1 | linux 2 | -------------------------------------------------------------------------------- /test/good-config.1/proc/cpuinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/good-config.1/proc/cpuinfo -------------------------------------------------------------------------------- /test/good-config.1/proc/devices: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/good-config.1/proc/devices -------------------------------------------------------------------------------- /test/good-config.1/proc/filesystems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/good-config.1/proc/filesystems -------------------------------------------------------------------------------- /test/good-config.1/proc/sys/dev/cdrom/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/good-config.1/proc/sys/dev/cdrom/info -------------------------------------------------------------------------------- /test/good-config.1/tmp/empty: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/usr/bin/mount: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | 3 | echo $0 $* > /dev/stderr 4 | -------------------------------------------------------------------------------- /test/good-config.1/usr/sbin/esxcfg-rescan: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/good-config.1/usr/sbin/esxcfg-vmhbadevs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/good-config.1/usr/sbin/mkfs.ext2: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | 3 | echo $0 $* > /dev/stderr 4 | -------------------------------------------------------------------------------- /test/good-config.1/usr/sbin/mkswap: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | 3 | echo $0 $* > /dev/stderr 4 | -------------------------------------------------------------------------------- /test/good-config.1/usr/sbin/scantools: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/good-config.1/usr/sbin/tune2fs: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | 3 | echo $0 $* > /dev/stderr 4 | -------------------------------------------------------------------------------- /test/good-config.1/usr/share/grub/i386-redhat/e2fs_stage1_5: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/usr/share/grub/i386-redhat/fat_stage1_5: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/usr/share/grub/i386-redhat/ffs_stage1_5: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/usr/share/grub/i386-redhat/iso9660_stage1_5: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/usr/share/grub/i386-redhat/jfs_stage1_5: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/usr/share/grub/i386-redhat/minix_stage1_5: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/usr/share/grub/i386-redhat/reiserfs_stage1_5: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/usr/share/grub/i386-redhat/stage1: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/usr/share/grub/i386-redhat/stage2: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/usr/share/grub/i386-redhat/stage2_eltorito: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/usr/share/grub/i386-redhat/ufs2_stage1_5: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/usr/share/grub/i386-redhat/vstatfs_stage1_5: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/usr/share/grub/i386-redhat/xfs_stage1_5: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /test/good-config.1/var/log/empty: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /test/gui/negative.adduser.vimuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/gui/negative.adduser.vimuser -------------------------------------------------------------------------------- /test/gui/negative.cosnetwork.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/gui/negative.cosnetwork.settings -------------------------------------------------------------------------------- /test/gui/negative.datastore.volumename: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/gui/negative.datastore.volumename -------------------------------------------------------------------------------- /test/gui/negative.install.cpioerror: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/gui/negative.install.cpioerror -------------------------------------------------------------------------------- /test/gui/negative.license.expired: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/gui/negative.license.expired -------------------------------------------------------------------------------- /test/gui/negative.nonics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/gui/negative.nonics -------------------------------------------------------------------------------- /test/gui/negative.setupvmdk.badPartitions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/gui/negative.setupvmdk.badPartitions -------------------------------------------------------------------------------- /test/gui/negative.timedate.manual.bad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/gui/negative.timedate.manual.bad -------------------------------------------------------------------------------- /test/gui/negative.usbmedia.nopackages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/gui/negative.usbmedia.nopackages -------------------------------------------------------------------------------- /test/gui/negative.usbmedia.noselection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/gui/negative.usbmedia.noselection -------------------------------------------------------------------------------- /test/gui/positive.cosnetwork.static: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/gui/positive.cosnetwork.static -------------------------------------------------------------------------------- /test/gui/positive.esxlocation.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/gui/positive.esxlocation.ide -------------------------------------------------------------------------------- /test/gui/positive.have.esx.but.no.vmfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/gui/positive.have.esx.but.no.vmfs -------------------------------------------------------------------------------- /test/gui/positive.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/gui/positive.install -------------------------------------------------------------------------------- /test/gui/positive.install.cancel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/gui/positive.install.cancel -------------------------------------------------------------------------------- /test/gui/positive.install.parts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/gui/positive.install.parts -------------------------------------------------------------------------------- /test/gui/positive.installlocation.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/gui/positive.installlocation.list -------------------------------------------------------------------------------- /test/gui/positive.keyboard.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/gui/positive.keyboard.list -------------------------------------------------------------------------------- /test/gui/positive.license.badserial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/gui/positive.license.badserial -------------------------------------------------------------------------------- /test/gui/positive.license.eval: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/gui/positive.license.eval -------------------------------------------------------------------------------- /test/gui/positive.nfs.urlparse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/gui/positive.nfs.urlparse -------------------------------------------------------------------------------- /test/gui/positive.proxy.set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/gui/positive.proxy.set -------------------------------------------------------------------------------- /test/gui/positive.setupvmdk.resetparts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/gui/positive.setupvmdk.resetparts -------------------------------------------------------------------------------- /test/gui/positive.timezone.basic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/gui/positive.timezone.basic -------------------------------------------------------------------------------- /test/gui/positive.timezone.weirdzones: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/gui/positive.timezone.weirdzones -------------------------------------------------------------------------------- /test/gui/positive.usbmedia.basic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/gui/positive.usbmedia.basic -------------------------------------------------------------------------------- /test/gui/positive.usbmedia.eject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/gui/positive.usbmedia.eject -------------------------------------------------------------------------------- /test/gui/positive.usbmedia.rescan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/gui/positive.usbmedia.rescan -------------------------------------------------------------------------------- /test/gui/positive.user.accounts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/gui/positive.user.accounts -------------------------------------------------------------------------------- /test/interactive_cage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/interactive_cage.py -------------------------------------------------------------------------------- /test/kiwi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/kiwi/__init__.py -------------------------------------------------------------------------------- /test/kiwi/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/kiwi/__version__.py -------------------------------------------------------------------------------- /test/kiwi/accessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/kiwi/accessor.py -------------------------------------------------------------------------------- /test/kiwi/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/kiwi/enums.py -------------------------------------------------------------------------------- /test/kiwi/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/kiwi/log.py -------------------------------------------------------------------------------- /test/kiwi/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/kiwi/python.py -------------------------------------------------------------------------------- /test/kiwi/ui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/kiwi/ui/__init__.py -------------------------------------------------------------------------------- /test/kiwi/ui/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/kiwi/ui/test/__init__.py -------------------------------------------------------------------------------- /test/kiwi/ui/test/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/kiwi/ui/test/common.py -------------------------------------------------------------------------------- /test/kiwi/ui/test/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/kiwi/ui/test/main.py -------------------------------------------------------------------------------- /test/kiwi/ui/test/recorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/kiwi/ui/test/recorder.py -------------------------------------------------------------------------------- /test/kiwi/ui/test/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/kiwi/ui/test/runner.py -------------------------------------------------------------------------------- /test/kiwi/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/kiwi/utils.py -------------------------------------------------------------------------------- /test/migrate_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/migrate_support.py -------------------------------------------------------------------------------- /test/record-gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/record-gui -------------------------------------------------------------------------------- /test/record-text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/record-text -------------------------------------------------------------------------------- /test/replay-gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/replay-gui -------------------------------------------------------------------------------- /test/run_all_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/run_all_tests.sh -------------------------------------------------------------------------------- /test/scriptedinstall/commands/negative.auth.badNIS.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/negative.auth.badNIS.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/negative.auth.noADDomain.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/negative.auth.noADDomain.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/negative.autopart.baddisk.bs: -------------------------------------------------------------------------------- 1 | autopart --disk=foo 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/negative.autopart.noflags.bs: -------------------------------------------------------------------------------- 1 | autopart 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/negative.bootloader.invalidLocation.bs: -------------------------------------------------------------------------------- 1 | bootloader --append=noapic --location=invalid 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/negative.bootloader.invalidMD5.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/negative.bootloader.invalidMD5.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/negative.bootloader.largePWD.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/negative.bootloader.largePWD.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/negative.bootloader.smallPWD.bs: -------------------------------------------------------------------------------- 1 | bootloader --password=pwd --location=mbr 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/negative.clearpart.dupdrive.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/negative.clearpart.dupdrive.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/negative.clearpart.dupignoredrive.bs: -------------------------------------------------------------------------------- 1 | clearpart --ignoredrives=vml.0001,sdb --overwritevmfs 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/negative.clearpart.invalidDrive.bs: -------------------------------------------------------------------------------- 1 | clearpart --drives=blah 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/negative.clearpart.invalidIgnoredrive.bs: -------------------------------------------------------------------------------- 1 | clearpart --ignoredrives=blah --overwritevmfs 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/negative.clearpart.nodrives.bs: -------------------------------------------------------------------------------- 1 | clearpart --overwritevmfs 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/negative.esxlocation.baddisk.bs: -------------------------------------------------------------------------------- 1 | esxlocation --disk=foobar 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/negative.esxlocation.badfirst.bs: -------------------------------------------------------------------------------- 1 | esxlocation --firstdisk=foobar 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/negative.esxlocation.baduuid.bs: -------------------------------------------------------------------------------- 1 | esxlocation --uuid=e270687f-815f-42f2-a344-2cda73460462 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/negative.esxlocation.clearconflict.bs: -------------------------------------------------------------------------------- 1 | esxlocation --disk=sda 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/negative.firewall.deprecated.bs: -------------------------------------------------------------------------------- 1 | firewall --blockIncoming 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/negative.firewallport.invalidDir.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/negative.firewallport.invalidDir.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/negative.firewallport.noName.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/negative.firewallport.noName.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/negative.include.self.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/negative.include.self.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/negative.install.baddir.bs: -------------------------------------------------------------------------------- 1 | install nfs --server=example.com --dir=bogus/path 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/negative.install.nourl.bs: -------------------------------------------------------------------------------- 1 | install url 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/negative.keyboard.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/negative.keyboard.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/negative.network.bootproto.static.noIP.bs: -------------------------------------------------------------------------------- 1 | network --bootproto=static --device=vmnic32 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/negative.network.invalidDevice.bs: -------------------------------------------------------------------------------- 1 | network --device=eth0 --bootproto=dhcp 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/negative.partition.badMountpoint.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/negative.partition.badMountpoint.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/negative.partition.badvmfs.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/negative.partition.badvmfs.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/negative.partition.badvmfs2.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/negative.partition.badvmfs2.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/negative.partition.badvmfs3.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/negative.partition.badvmfs3.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/negative.partition.invalidDrive.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/negative.partition.invalidDrive.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/negative.partition.invalidFSType.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/negative.partition.invalidFSType.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/negative.partition.invalidMount.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/negative.partition.invalidMount.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/negative.partition.invalidSize.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/negative.partition.invalidSize.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/negative.partition.lowMaxSize.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/negative.partition.lowMaxSize.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/negative.partition.negativeSize.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/negative.partition.negativeSize.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/negative.partition.noRoot.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/negative.partition.noRoot.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/negative.partition.nodisk.bs: -------------------------------------------------------------------------------- 1 | part /bar --size=256 --fstype=ext3 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/negative.partition.notSwap.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/negative.partition.notSwap.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/negative.partition.tooSmall.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/negative.partition.tooSmall.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/negative.partition.virtualBoot.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/negative.partition.virtualBoot.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/negative.rootpw.invalidCrypt.bs: -------------------------------------------------------------------------------- 1 | rootpw --iscrypted 123abc 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/negative.rootpw.longPWD.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/negative.rootpw.longPWD.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/negative.rootpw.noPWD.bs: -------------------------------------------------------------------------------- 1 | rootpw 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/negative.timezone.invalidzone.bs: -------------------------------------------------------------------------------- 1 | timezone invalid 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/negative.timezone.nozone.bs: -------------------------------------------------------------------------------- 1 | timezone 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/negative.virtualdisk.badname.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/negative.virtualdisk.badname.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/negative.virtualdisk.badsize.bs: -------------------------------------------------------------------------------- 1 | virtualdisk cos --size=12000 --onvmfs="Storage1" 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/negative.virtualdisk.badsize2.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/negative.virtualdisk.badsize2.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/negative.virtualdisk.big.disk.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/negative.virtualdisk.big.disk.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/negative.virtualdisk.unknownvmfs.bs: -------------------------------------------------------------------------------- 1 | virtualdisk cos --size=4000 --onvmfs=foo 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/negative.vmserialnum.badformat.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/negative.vmserialnum.badformat.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/negative.vmserialnum.badkey.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/negative.vmserialnum.badkey.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/positive.goodvmfs.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/positive.goodvmfs.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.auth.disableMD5.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/possitive.auth.disableMD5.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.auth.disableShadow.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/possitive.auth.disableShadow.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.auth.enableKRB5.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/possitive.auth.enableKRB5.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.auth.enableLDAP.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/possitive.auth.enableLDAP.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.auth.enableLDAPAuth.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/possitive.auth.enableLDAPAuth.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.auth.enableMD5.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/possitive.auth.enableMD5.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.auth.enableNIS.bs: -------------------------------------------------------------------------------- 1 | auth --enablenis 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.auth.enableShadow.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/possitive.auth.enableShadow.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.auth.noMD5.bs: -------------------------------------------------------------------------------- 1 | auth --disableshadow 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.auth.noNIS.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/possitive.auth.noNIS.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.auth.noShadow.bs: -------------------------------------------------------------------------------- 1 | auth --enablemd5 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.autopart.cciss.bs: -------------------------------------------------------------------------------- 1 | autopart --disk=cciss/c0d0 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.autopart.disk.bs: -------------------------------------------------------------------------------- 1 | autopart --disk=vml.0000 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.autopart.drive.bs: -------------------------------------------------------------------------------- 1 | autopart --drive=vml.0000 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.autopart.firstdisk.bs: -------------------------------------------------------------------------------- 1 | autopart --firstdisk 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.autopart.vml.bs: -------------------------------------------------------------------------------- 1 | autopart --disk=vml.0000 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.bootloader.append.bs: -------------------------------------------------------------------------------- 1 | bootloader --append=noapic --location=mbr 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.bootloader.md5pwd.bs: -------------------------------------------------------------------------------- 1 | bootloader --md5pass=$1$7U8tB$KvxsVx7VskMJuUtaDG.Z01 --location=mbr 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.bootloader.nolocation.bs: -------------------------------------------------------------------------------- 1 | bootloader --append=noapic 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.bootloader.pwd.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/possitive.bootloader.pwd.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.bootloader.upgrade.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/possitive.bootloader.upgrade.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.clearpart.all.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/possitive.clearpart.all.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.clearpart.alldrives.bs: -------------------------------------------------------------------------------- 1 | clearpart --alldrives --overwritevmfs 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.clearpart.cciss.bs: -------------------------------------------------------------------------------- 1 | clearpart --drives=cciss/c0d0 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.clearpart.drives.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/possitive.clearpart.drives.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.clearpart.exceptvmfs.bs: -------------------------------------------------------------------------------- 1 | clearpart --exceptvmfs --alldrives 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.clearpart.firstdisk.bs: -------------------------------------------------------------------------------- 1 | clearpart --firstdisk --overwritevmfs 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.clearpart.ignoredrives.bs: -------------------------------------------------------------------------------- 1 | clearpart --ignoredrives=vml.0001 --overwritevmfs 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.clearpart.initlabel.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/possitive.clearpart.initlabel.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.clearpart.linux.bs: -------------------------------------------------------------------------------- 1 | clearpart --linux --alldrives 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.clearpart.minimal.bs: -------------------------------------------------------------------------------- 1 | clearpart --drives=sda --overwritevmfs 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.empty.bs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.esxlocation.firstdisk.bs: -------------------------------------------------------------------------------- 1 | esxlocation --firstdisk 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.firewall.allowIncoming.bs: -------------------------------------------------------------------------------- 1 | firewall --allowIncoming 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.firewall.blockOutgoing.bs: -------------------------------------------------------------------------------- 1 | firewall --blockOutgoing 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.firewall.disabled.bs: -------------------------------------------------------------------------------- 1 | firewall --disabled 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.firewall.enabled.bs: -------------------------------------------------------------------------------- 1 | firewall --enabled 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.firewallport.close.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/possitive.firewallport.close.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.firewallport.open.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/possitive.firewallport.open.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.install.cdrom.bs: -------------------------------------------------------------------------------- 1 | install cdrom 2 | 3 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.install.default.bs: -------------------------------------------------------------------------------- 1 | install 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.install.ftp.bs: -------------------------------------------------------------------------------- 1 | install url ftp://www.aserver.com:902 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.install.http.bs: -------------------------------------------------------------------------------- 1 | install url http://www.aserver.com:902 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.install.nfs.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/possitive.install.nfs.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.keyboard.bs: -------------------------------------------------------------------------------- 1 | keyboard uk 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.lang.bs: -------------------------------------------------------------------------------- 1 | lang 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.langsupport.bs: -------------------------------------------------------------------------------- 1 | langsupport 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.mouse.bs: -------------------------------------------------------------------------------- 1 | mouse 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.network.bootproto.dhcp.bs: -------------------------------------------------------------------------------- 1 | network --bootproto=dhcp --device=vmnic32 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.network.device.mac.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/possitive.network.device.mac.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.network.noBootproto.bs: -------------------------------------------------------------------------------- 1 | network --device=vmnic32 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.network.noDevice.bs: -------------------------------------------------------------------------------- 1 | network --bootproto=dhcp 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.network.vlanid.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/possitive.network.vlanid.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.package.good.bs: -------------------------------------------------------------------------------- 1 | %packages 2 | VMware-esx-gunk 3 | -foopkg 4 | # blah 5 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.paranoid.bs: -------------------------------------------------------------------------------- 1 | paranoid 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.partition.cos.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/possitive.partition.cos.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.partition.firstdisk.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/possitive.partition.firstdisk.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.partition.minimal.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/possitive.partition.minimal.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.partition.noFSType.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/possitive.partition.noFSType.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.partition.vmfsSpace.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/possitive.partition.vmfsSpace.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.post.nochroot.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/possitive.post.nochroot.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.preSection.bs: -------------------------------------------------------------------------------- 1 | %pre 2 | echo "hello" 3 | 4 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.reboot.bs: -------------------------------------------------------------------------------- 1 | reboot 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.reboot.noEject.bs: -------------------------------------------------------------------------------- 1 | reboot --noeject 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.rootpw.crypted.bs: -------------------------------------------------------------------------------- 1 | rootpw --iscrypted $1$7U8tB$KvxsVx7VskMJuUtaDG.Z01 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.rootpw.invalidCrypt.bs: -------------------------------------------------------------------------------- 1 | rootpw invalidlength --iscrypted 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.rootpw.plaintext.bs: -------------------------------------------------------------------------------- 1 | rootpw mypassword 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.rootpw.shortPWD.bs: -------------------------------------------------------------------------------- 1 | rootpw pwd 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.timezone.bs: -------------------------------------------------------------------------------- 1 | timezone America/Los_Angeles 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.timezone.utc.bs: -------------------------------------------------------------------------------- 1 | timezone --utc Asia/Magadan 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.virtualdisk.existing.bs: -------------------------------------------------------------------------------- 1 | virtualdisk cos --size=2000 --onvmfs="Storage 1" 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.virtualdisk.firstvmfs.bs: -------------------------------------------------------------------------------- 1 | virtualdisk cos --size=5000 --onfirstvmfs=local 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.virtualdisk.minimal.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/possitive.virtualdisk.minimal.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.virtualpart.minimal.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/possitive.virtualpart.minimal.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.vmaccepteula.bs: -------------------------------------------------------------------------------- 1 | vmaccepteula 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.vmserialnum.esx.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/commands/possitive.vmserialnum.esx.bs -------------------------------------------------------------------------------- /test/scriptedinstall/commands/possitive.zerombr.bs: -------------------------------------------------------------------------------- 1 | zerombr 2 | -------------------------------------------------------------------------------- /test/scriptedinstall/files/complex.preparse.arg.default.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/complex.preparse.arg.default.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/complex.preparse.arg.invalid.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/complex.preparse.arg.invalid.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/complex.preparse.arg.missing.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/complex.preparse.arg.missing.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/complex.preparse.arg.space.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/complex.preparse.arg.space.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/complex.preparse.auth.badNIS.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/complex.preparse.auth.badNIS.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/complex.preparse.auth.noADDomain.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/complex.preparse.auth.noADDomain.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/complex.preparse.auth.noAuth.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/complex.preparse.auth.noAuth.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/complex.preparse.auth.noMD5.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/complex.preparse.auth.noMD5.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/complex.preparse.auth.noNIS.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/complex.preparse.auth.noNIS.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/complex.preparse.auth.noShadow.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/complex.preparse.auth.noShadow.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/complex.preparse.autopart.baddisk.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/complex.preparse.autopart.baddisk.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/complex.preparse.autopart.noflags.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/complex.preparse.autopart.noflags.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/complex.preparse.autostep.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/complex.preparse.autostep.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/complex.preparse.cmdline.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/complex.preparse.cmdline.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/complex.preparse.device.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/complex.preparse.device.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/complex.preparse.deviceprobe.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/complex.preparse.deviceprobe.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/complex.preparse.duplicate.arg.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/complex.preparse.duplicate.arg.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/complex.preparse.duplicate.cmd.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/complex.preparse.duplicate.cmd.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/complex.preparse.firewall.noName.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/complex.preparse.firewall.noName.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/complex.preparse.firstboot.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/complex.preparse.firstboot.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/complex.preparse.harddrive.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/complex.preparse.harddrive.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/complex.preparse.ignoredisk.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/complex.preparse.ignoredisk.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/complex.preparse.install.extra.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/complex.preparse.install.extra.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/complex.preparse.install.nourl.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/complex.preparse.install.nourl.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/complex.preparse.interactive.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/complex.preparse.interactive.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/complex.preparse.lang.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/complex.preparse.lang.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/complex.preparse.langsupport.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/complex.preparse.langsupport.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/complex.preparse.lilo.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/complex.preparse.lilo.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/complex.preparse.lilocheck.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/complex.preparse.lilocheck.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/complex.preparse.logvol.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/complex.preparse.logvol.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/complex.preparse.minimal.noRootpw.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/complex.preparse.minimal.noRootpw.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/complex.preparse.mouse.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/complex.preparse.mouse.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/complex.preparse.paranoid.fail.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/complex.preparse.paranoid.fail.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/complex.preparse.partition.noRoot.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/complex.preparse.partition.noRoot.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/complex.preparse.partition.nodisk.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/complex.preparse.partition.nodisk.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/complex.preparse.pre.scriptError.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/complex.preparse.pre.scriptError.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/complex.preparse.reboot.noEject.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/complex.preparse.reboot.noEject.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/complex.preparse.rootpw.longPWD.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/complex.preparse.rootpw.longPWD.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/complex.preparse.rootpw.noPWD.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/complex.preparse.rootpw.noPWD.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/complex.preparse.rootpw.shortPWD.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/complex.preparse.rootpw.shortPWD.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/complex.preparse.sections.good.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/complex.preparse.sections.good.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/complex.preparse.skipx.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/complex.preparse.skipx.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/complex.preparse.text.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/complex.preparse.text.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/complex.preparse.timezone.nozone.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/complex.preparse.timezone.nozone.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/complex.preparse.unknown.arg.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/complex.preparse.unknown.arg.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/complex.preparse.unknown.cmd.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/complex.preparse.unknown.cmd.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/complex.preparse.upgrade.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/complex.preparse.upgrade.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/complex.preparse.vnc.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/complex.preparse.vnc.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/complex.preparse.volgroup.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/complex.preparse.volgroup.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/complex.preparse.xconfig.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/complex.preparse.xconfig.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/complex.preparse.xdisplay.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/complex.preparse.xdisplay.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/possitive.minimal.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/possitive.minimal.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/possitive.minimal.warn.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/possitive.minimal.warn.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/scui.abort.bootcmdline.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/scui.abort.bootcmdline.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/scui.abort.post.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/scui.abort.post.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/scui.adauth.domain.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/scui.adauth.domain.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/scui.autopart.vmfs.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/scui.autopart.vmfs.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/scui.autopart.vmfs.path.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/scui.autopart.vmfs.path.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/scui.basic.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/scui.basic.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/scui.basic.noequals.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/scui.basic.noequals.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/scui.clearks.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/scui.clearks.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/scui.cpioerror.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/scui.cpioerror.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/scui.dogfood.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/scui.dogfood.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/scui.dryrun.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/scui.dryrun.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/scui.esxlocation.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/scui.esxlocation.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/scui.firewall.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/scui.firewall.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/scui.installiso.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/scui.installiso.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/scui.installurl.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/scui.installurl.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/scui.license.expired: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/scui.license.expired -------------------------------------------------------------------------------- /test/scriptedinstall/files/scui.mountMedia.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/scui.mountMedia.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/scui.multiscript.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/scui.multiscript.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/scui.network.bootif.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/scui.network.bootif.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/scui.nofirstdisk.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/scui.nofirstdisk.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/scui.nonics.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/scui.nonics.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/scui.nopost.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/scui.nopost.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/scui.packages.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/scui.packages.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/scui.timedate.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/scui.timedate.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/scui.upgrade.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/scui.upgrade.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/scui.upgrade.combined-boot-root.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/scui.upgrade.combined-boot-root.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/scui.upgrade.grub-on-boot.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/scui.upgrade.grub-on-boot.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/scui.upgrade.nomigrate.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/scui.upgrade.nomigrate.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/simple.preparse.auth.disableMD5.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/simple.preparse.auth.disableMD5.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/simple.preparse.auth.enableKRB5.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/simple.preparse.auth.enableKRB5.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/simple.preparse.auth.enableLDAP.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/simple.preparse.auth.enableLDAP.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/simple.preparse.auth.enableMD5.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/simple.preparse.auth.enableMD5.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/simple.preparse.auth.enableNIS.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/simple.preparse.auth.enableNIS.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/simple.preparse.auth.enableShadow.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/simple.preparse.auth.enableShadow.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/simple.preparse.autopart.cciss.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/simple.preparse.autopart.cciss.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/simple.preparse.autopart.disk.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/simple.preparse.autopart.disk.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/simple.preparse.autopart.drive.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/simple.preparse.autopart.drive.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/simple.preparse.autopart.vml.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/simple.preparse.autopart.vml.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/simple.preparse.badQuoting.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/simple.preparse.badQuoting.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/simple.preparse.bootloader.append.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/simple.preparse.bootloader.append.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/simple.preparse.bootloader.md5pwd.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/simple.preparse.bootloader.md5pwd.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/simple.preparse.bootloader.pwd.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/simple.preparse.bootloader.pwd.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/simple.preparse.clearpart.all.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/simple.preparse.clearpart.all.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/simple.preparse.clearpart.drives.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/simple.preparse.clearpart.drives.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/simple.preparse.comment.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/simple.preparse.comment.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/simple.preparse.defaults.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/simple.preparse.defaults.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/simple.preparse.firewall.enabled.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/simple.preparse.firewall.enabled.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/simple.preparse.firewallport.open.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/simple.preparse.firewallport.open.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/simple.preparse.install.baddir.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/simple.preparse.install.baddir.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/simple.preparse.install.cdrom.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/simple.preparse.install.cdrom.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/simple.preparse.install.default.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/simple.preparse.install.default.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/simple.preparse.install.ftp.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/simple.preparse.install.ftp.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/simple.preparse.install.http.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/simple.preparse.install.http.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/simple.preparse.install.nfs.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/simple.preparse.install.nfs.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/simple.preparse.keyboard.bad.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/simple.preparse.keyboard.bad.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/simple.preparse.keyboard.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/simple.preparse.keyboard.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/simple.preparse.network.noDevice.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/simple.preparse.network.noDevice.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/simple.preparse.network.vlanid.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/simple.preparse.network.vlanid.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/simple.preparse.package.good.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/simple.preparse.package.good.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/simple.preparse.paranoid.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/simple.preparse.paranoid.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/simple.preparse.partition.minimal.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/simple.preparse.partition.minimal.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/simple.preparse.postsection.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/simple.preparse.postsection.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/simple.preparse.postsection.dos.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/simple.preparse.postsection.dos.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/simple.preparse.presection.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/simple.preparse.presection.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/simple.preparse.quoting.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/simple.preparse.quoting.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/simple.preparse.reboot.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/simple.preparse.reboot.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/simple.preparse.rootpw.crypted.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/simple.preparse.rootpw.crypted.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/simple.preparse.rootpw.impliedMD5.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/simple.preparse.rootpw.impliedMD5.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/simple.preparse.rootpw.plaintext.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/simple.preparse.rootpw.plaintext.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/simple.preparse.timezone.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/simple.preparse.timezone.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/simple.preparse.timezone.utc.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/simple.preparse.timezone.utc.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/simple.preparse.upgrade.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/simple.preparse.upgrade.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/simple.preparse.vmaccepteula.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/simple.preparse.vmaccepteula.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/simple.preparse.vmserialnum.esx.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/simple.preparse.vmserialnum.esx.bs -------------------------------------------------------------------------------- /test/scriptedinstall/files/simple.preparse.zerombr.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/scriptedinstall/files/simple.preparse.zerombr.bs -------------------------------------------------------------------------------- /test/skip_to_step.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/skip_to_step.py -------------------------------------------------------------------------------- /test/test_boot_cmdline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/test_boot_cmdline.py -------------------------------------------------------------------------------- /test/test_cosmem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/test_cosmem.py -------------------------------------------------------------------------------- /test/test_driversxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/test_driversxml.py -------------------------------------------------------------------------------- /test/test_esx4upgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/test_esx4upgrade.py -------------------------------------------------------------------------------- /test/test_exit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/test_exit.py -------------------------------------------------------------------------------- /test/test_fstab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/test_fstab.py -------------------------------------------------------------------------------- /test/test_grubupdate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/test_grubupdate.py -------------------------------------------------------------------------------- /test/test_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/test_gui.py -------------------------------------------------------------------------------- /test/test_iscsi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/test_iscsi.py -------------------------------------------------------------------------------- /test/test_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/test_log.py -------------------------------------------------------------------------------- /test/test_migrateNtp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/test_migrateNtp.py -------------------------------------------------------------------------------- /test/test_migrateServices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/test_migrateServices.py -------------------------------------------------------------------------------- /test/test_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/test_network.py -------------------------------------------------------------------------------- /test/test_partitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/test_partitions.py -------------------------------------------------------------------------------- /test/test_precheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/test_precheck.py -------------------------------------------------------------------------------- /test/test_regexlocator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/test_regexlocator.py -------------------------------------------------------------------------------- /test/test_remotefiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/test_remotefiles.py -------------------------------------------------------------------------------- /test/test_review.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/test_review.py -------------------------------------------------------------------------------- /test/test_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/test_script.py -------------------------------------------------------------------------------- /test/test_scriptedinstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/test_scriptedinstall.py -------------------------------------------------------------------------------- /test/test_task_progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/test_task_progress.py -------------------------------------------------------------------------------- /test/test_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/test_text.py -------------------------------------------------------------------------------- /test/test_timezone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/test_timezone.py -------------------------------------------------------------------------------- /test/test_userchoices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/test_userchoices.py -------------------------------------------------------------------------------- /test/test_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/test_users.py -------------------------------------------------------------------------------- /test/textui_test/negative.advparts.modparts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/textui_test/negative.advparts.modparts -------------------------------------------------------------------------------- /test/textui_test/negative.cosnetworkadapter.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/textui_test/negative.cosnetworkadapter.settings -------------------------------------------------------------------------------- /test/textui_test/negative.install.cpioerror: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/textui_test/negative.install.cpioerror -------------------------------------------------------------------------------- /test/textui_test/negative.nfsmedia.badserver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/textui_test/negative.nfsmedia.badserver -------------------------------------------------------------------------------- /test/textui_test/negative.usbmedia.nopackages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/textui_test/negative.usbmedia.nopackages -------------------------------------------------------------------------------- /test/textui_test/positive.advpart.modparts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/textui_test/positive.advpart.modparts -------------------------------------------------------------------------------- /test/textui_test/positive.bootloader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/textui_test/positive.bootloader -------------------------------------------------------------------------------- /test/textui_test/positive.cosnic.simple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/textui_test/positive.cosnic.simple -------------------------------------------------------------------------------- /test/textui_test/positive.ftpmedia.errshelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/textui_test/positive.ftpmedia.errshelp -------------------------------------------------------------------------------- /test/textui_test/positive.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/textui_test/positive.install -------------------------------------------------------------------------------- /test/textui_test/positive.install.cosnetback: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/textui_test/positive.install.cosnetback -------------------------------------------------------------------------------- /test/textui_test/positive.install.errsexits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/textui_test/positive.install.errsexits -------------------------------------------------------------------------------- /test/textui_test/positive.keyboard.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/textui_test/positive.keyboard.list -------------------------------------------------------------------------------- /test/textui_test/positive.password: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/textui_test/positive.password -------------------------------------------------------------------------------- /test/textui_test/positive.timedate.errshelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/textui_test/positive.timedate.errshelp -------------------------------------------------------------------------------- /test/textui_test/positive.timedate.manual: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/textui_test/positive.timedate.manual -------------------------------------------------------------------------------- /test/textui_test/positive.usbmedia.basic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/textui_test/positive.usbmedia.basic -------------------------------------------------------------------------------- /test/textui_test/positive.usbmedia.eject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/textui_test/positive.usbmedia.eject -------------------------------------------------------------------------------- /test/textui_test/positive.usbmedia.rescan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/textui_test/positive.usbmedia.rescan -------------------------------------------------------------------------------- /test/textui_test/sessions_test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/textui_test/sessions_test/__init__.py -------------------------------------------------------------------------------- /test/textui_test/sessions_test/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/textui_test/sessions_test/sessions.py -------------------------------------------------------------------------------- /test/textui_test/sessions_test/test_eula.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/textui_test/sessions_test/test_eula.py -------------------------------------------------------------------------------- /test/textui_test/sessions_test/test_testenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/textui_test/sessions_test/test_testenv.py -------------------------------------------------------------------------------- /test/textui_test/sessions_test/test_welcome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/textui_test/sessions_test/test_welcome.py -------------------------------------------------------------------------------- /test/textui_test/sessions_test/test_welcome_errs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/textui_test/sessions_test/test_welcome_errs.py -------------------------------------------------------------------------------- /test/upgrade/fstab.mig.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/upgrade/fstab.mig.0 -------------------------------------------------------------------------------- /test/upgrade/fstab.new.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/upgrade/fstab.new.0 -------------------------------------------------------------------------------- /test/upgrade/fstab.old.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/upgrade/fstab.old.0 -------------------------------------------------------------------------------- /test/upgrade/group.mig.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/upgrade/group.mig.0 -------------------------------------------------------------------------------- /test/upgrade/group.new.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/upgrade/group.new.0 -------------------------------------------------------------------------------- /test/upgrade/group.old.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/upgrade/group.old.0 -------------------------------------------------------------------------------- /test/upgrade/lspci.unsupported: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/upgrade/lspci.unsupported -------------------------------------------------------------------------------- /test/upgrade/ntp.conf.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/upgrade/ntp.conf.0 -------------------------------------------------------------------------------- /test/upgrade/ntp.conf.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/upgrade/ntp.conf.1 -------------------------------------------------------------------------------- /test/upgrade/passwd.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/upgrade/passwd.0 -------------------------------------------------------------------------------- /test/upgrade/passwd.mig.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/upgrade/passwd.mig.0 -------------------------------------------------------------------------------- /test/upgrade/passwd.new.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/upgrade/passwd.new.0 -------------------------------------------------------------------------------- /test/upgrade/passwd.old.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/upgrade/passwd.old.0 -------------------------------------------------------------------------------- /test/upgrade/precheck-cpuinfo.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/upgrade/precheck-cpuinfo.0 -------------------------------------------------------------------------------- /test/upgrade/precheck-cpuinfo.1: -------------------------------------------------------------------------------- 1 | empty : file 2 | -------------------------------------------------------------------------------- /test/upgrade/precheck-esxconf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/upgrade/precheck-esxconf.xml -------------------------------------------------------------------------------- /test/upgrade/precheck-failures.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/upgrade/precheck-failures.xml -------------------------------------------------------------------------------- /test/upgrade/precheck-mem.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/upgrade/precheck-mem.xml -------------------------------------------------------------------------------- /test/upgrade/precheck-noesxconf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/upgrade/precheck-noesxconf.xml -------------------------------------------------------------------------------- /test/upgrade/precheck-unsupported-pci.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/upgrade/precheck-unsupported-pci.xml -------------------------------------------------------------------------------- /test/upgrade/precheck.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/upgrade/precheck.0.xml -------------------------------------------------------------------------------- /test/upgrade/precheck.allfail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/upgrade/precheck.allfail.xml -------------------------------------------------------------------------------- /test/upgrade/precheck.fail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/upgrade/precheck.fail.xml -------------------------------------------------------------------------------- /test/upgrade/remove-after.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/upgrade/remove-after.0 -------------------------------------------------------------------------------- /test/upgrade/remove-before.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/upgrade/remove-before.0 -------------------------------------------------------------------------------- /test/upgrade/results.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/upgrade/results.0.xml -------------------------------------------------------------------------------- /test/upgrade/services: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/upgrade/services -------------------------------------------------------------------------------- /test/upgrade/shadow.old.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/upgrade/shadow.old.0 -------------------------------------------------------------------------------- /test/upgrade/time: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/upgrade/time -------------------------------------------------------------------------------- /test/upgrade/time-udp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/upgrade/time-udp -------------------------------------------------------------------------------- /test/upgrade/upgrade.0.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/upgrade/upgrade.0.ks -------------------------------------------------------------------------------- /test/upgrade/vmInventory-old.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/upgrade/vmInventory-old.xml -------------------------------------------------------------------------------- /test/upgrade/vmInventory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/upgrade/vmInventory.xml -------------------------------------------------------------------------------- /test/upgrade/vmware-authd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/upgrade/vmware-authd -------------------------------------------------------------------------------- /test/upgrade/xinetd.conf.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/upgrade/xinetd.conf.0 -------------------------------------------------------------------------------- /test/upgrade/xinetd.conf.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/test/upgrade/xinetd.conf.1 -------------------------------------------------------------------------------- /textui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/textui/__init__.py -------------------------------------------------------------------------------- /textui/bootloader_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/textui/bootloader_ui.py -------------------------------------------------------------------------------- /textui/cosnetworkadapter_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/textui/cosnetworkadapter_ui.py -------------------------------------------------------------------------------- /textui/customdrivers_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/textui/customdrivers_ui.py -------------------------------------------------------------------------------- /textui/datastore_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/textui/datastore_ui.py -------------------------------------------------------------------------------- /textui/esxlocation_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/textui/esxlocation_ui.py -------------------------------------------------------------------------------- /textui/eula_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/textui/eula_ui.py -------------------------------------------------------------------------------- /textui/finished_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/textui/finished_ui.py -------------------------------------------------------------------------------- /textui/installation_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/textui/installation_ui.py -------------------------------------------------------------------------------- /textui/installmedia_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/textui/installmedia_ui.py -------------------------------------------------------------------------------- /textui/keyboard_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/textui/keyboard_ui.py -------------------------------------------------------------------------------- /textui/license_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/textui/license_ui.py -------------------------------------------------------------------------------- /textui/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/textui/main.py -------------------------------------------------------------------------------- /textui/network_address_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/textui/network_address_setup.py -------------------------------------------------------------------------------- /textui/nic_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/textui/nic_setup.py -------------------------------------------------------------------------------- /textui/partsetupchoice_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/textui/partsetupchoice_ui.py -------------------------------------------------------------------------------- /textui/password_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/textui/password_ui.py -------------------------------------------------------------------------------- /textui/review_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/textui/review_ui.py -------------------------------------------------------------------------------- /textui/setupvmdk_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/textui/setupvmdk_ui.py -------------------------------------------------------------------------------- /textui/storage_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/textui/storage_utils.py -------------------------------------------------------------------------------- /textui/textengine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/textui/textengine.py -------------------------------------------------------------------------------- /textui/textrunner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/textui/textrunner.py -------------------------------------------------------------------------------- /textui/timedate_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/textui/timedate_ui.py -------------------------------------------------------------------------------- /textui/timezone_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/textui/timezone_ui.py -------------------------------------------------------------------------------- /textui/welcome_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/textui/welcome_ui.py -------------------------------------------------------------------------------- /tidy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/tidy.py -------------------------------------------------------------------------------- /timedate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/timedate.py -------------------------------------------------------------------------------- /timezone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/timezone.py -------------------------------------------------------------------------------- /timezone.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/timezone.xml -------------------------------------------------------------------------------- /usbmedia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/usbmedia.py -------------------------------------------------------------------------------- /userchoices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/userchoices.py -------------------------------------------------------------------------------- /users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/users.py -------------------------------------------------------------------------------- /util/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/util/Makefile -------------------------------------------------------------------------------- /util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/util/__init__.py -------------------------------------------------------------------------------- /util/_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/util/_util.py -------------------------------------------------------------------------------- /util/dumpuuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/util/dumpuuid.c -------------------------------------------------------------------------------- /util/libutil.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/util/libutil.so -------------------------------------------------------------------------------- /util/utilmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/util/utilmodule.c -------------------------------------------------------------------------------- /vua-standin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/vua-standin.sh -------------------------------------------------------------------------------- /weasel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/weasel.py -------------------------------------------------------------------------------- /weasel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/weasel.xml -------------------------------------------------------------------------------- /workarounds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/weasel/HEAD/workarounds.py --------------------------------------------------------------------------------