summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/standalone')
-rwxr-xr-xperl-install/standalone/diskdrake2
-rwxr-xr-xperl-install/standalone/drakupdate_fstab6
2 files changed, 4 insertions, 4 deletions
diff --git a/perl-install/standalone/diskdrake b/perl-install/standalone/diskdrake
index 870d115b0..74787fc21 100755
--- a/perl-install/standalone/diskdrake
+++ b/perl-install/standalone/diskdrake
@@ -106,7 +106,7 @@ if ($type eq 'list-hd') {
my $useSupermount = 'magicdev';
require security::level;
require lang;
- fs::set_default_options($raw_hd,
+ fs::mount_options::set_default($raw_hd,
useSupermount => $useSupermount,
security => security::level::get(),
lang::fs_options(lang::read()));
diff --git a/perl-install/standalone/drakupdate_fstab b/perl-install/standalone/drakupdate_fstab
index 711df4e45..46b05e9fc 100755
--- a/perl-install/standalone/drakupdate_fstab
+++ b/perl-install/standalone/drakupdate_fstab
@@ -91,14 +91,14 @@ sub set_options {
my ($part, $useSupermount) = @_;
$part->{is_removable} = 1; #- force removable flag
- fs::set_default_options($part,
+ fs::mount_options::set_default($part,
useSupermount => $useSupermount,
security => security::level::get(),
lang::fs_options(lang::read()));
- my ($options, $unknown) = fs::mount_options_unpack($part);
+ my ($options, $unknown) = fs::mount_options::unpack($part);
$options->{kudzu} = 1 if !$no_flag;
- fs::mount_options_pack($part, $options, $unknown);
+ fs::mount_options::pack($part, $options, $unknown);
}
sub set_mount_point {