diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-06-28 16:50:39 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-06-28 16:50:39 +0000 |
commit | b6a8fceafd44f7354efc7b7b27db48204e051317 (patch) | |
tree | e579bbc5441d9905f91880e5d68440a70802b2f4 /perl-install/modules.pm | |
parent | f02e76ad7ed01ce6f02ed576c13dd74fc69cdef6 (diff) | |
download | drakx-backup-do-not-use-b6a8fceafd44f7354efc7b7b27db48204e051317.tar drakx-backup-do-not-use-b6a8fceafd44f7354efc7b7b27db48204e051317.tar.gz drakx-backup-do-not-use-b6a8fceafd44f7354efc7b7b27db48204e051317.tar.bz2 drakx-backup-do-not-use-b6a8fceafd44f7354efc7b7b27db48204e051317.tar.xz drakx-backup-do-not-use-b6a8fceafd44f7354efc7b7b27db48204e051317.zip |
no_comment
Diffstat (limited to 'perl-install/modules.pm')
-rw-r--r-- | perl-install/modules.pm | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/perl-install/modules.pm b/perl-install/modules.pm index 5925f9df5..05a1bb8d6 100644 --- a/perl-install/modules.pm +++ b/perl-install/modules.pm @@ -92,6 +92,8 @@ arch() =~ /^sparc/ ? ( "af_packet" => "packet socket", "nfs" => "Network File System (nfs)", "lockd" => "lockd", + "parport" => "parport", + "parport_pc" => "parport_pc", "sunrpc" => "sunrpc", }], [ 'scsi', { @@ -488,9 +490,9 @@ sub read_conf($;$) { sub write_conf { my ($prefix) = @_; - #- my $file = "$prefix/etc/modules.conf"; TODO RESTORE FOR AFTER 7.1 - #- rename "$prefix/etc/conf.modules", $file; #- make the switch to new name if needed - my $file = "$prefix/etc/conf.modules"; + + my $file = "$prefix/etc/modules.conf"; + rename "$prefix/etc/conf.modules", $file; #- make the switch to new name if needed #- remove the post-install supermount stuff. We may have to add some more substInFile { $_ = '' if /^post-install supermount/ } $file; |