diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-08-04 02:06:12 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-08-04 02:06:12 +0000 |
commit | 1602968a9b23e7864dba87add06c015788599915 (patch) | |
tree | c6d938a9dc1d76bac622585611e2b015cc855bc7 /perl-install/fs | |
parent | e7bec268672e3fdc2a73eacf36dbaf72235ccfd2 (diff) | |
download | drakx-1602968a9b23e7864dba87add06c015788599915.tar drakx-1602968a9b23e7864dba87add06c015788599915.tar.gz drakx-1602968a9b23e7864dba87add06c015788599915.tar.bz2 drakx-1602968a9b23e7864dba87add06c015788599915.tar.xz drakx-1602968a9b23e7864dba87add06c015788599915.zip |
return a true value for perl
Diffstat (limited to 'perl-install/fs')
-rw-r--r-- | perl-install/fs/get.pm | 2 | ||||
-rw-r--r-- | perl-install/fs/mount_options.pm | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/perl-install/fs/get.pm b/perl-install/fs/get.pm index 5b5b75077..3ac3ba0b4 100644 --- a/perl-install/fs/get.pm +++ b/perl-install/fs/get.pm @@ -126,3 +126,5 @@ sub up_mount_point { $_->{mntpoint} eq $mntpoint and return $_ foreach @$fstab; } } + +1; diff --git a/perl-install/fs/mount_options.pm b/perl-install/fs/mount_options.pm index 0e5d2519f..66d434d0e 100644 --- a/perl-install/fs/mount_options.pm +++ b/perl-install/fs/mount_options.pm @@ -246,3 +246,5 @@ sub set_all_default { set_default($part, %opts); } } + +1; |