home *** CD-ROM | disk | FTP | other *** search
- # -*-perl-*-
-
- sub select_media {
- if ($installsource eq "ftp") {
- require "ftp";
- return &ftp_init;
- } elsif ($installsource eq "cdrom") {
- return &probe_rhs_cdrom;
- } elsif ($installsource eq "nfs") {
- return &nfs_mount;
- } elsif ($installsource eq "floppy") {
- require "floppy";
-
- return &floppy_init;
- } elsif ($installsource eq "hard drive") {
- return &mount_partition;
- }
- }
-
- 1;
-