summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2008-04-01 09:14:13 +0000
committerPascal Rigaux <pixel@mandriva.com>2008-04-01 09:14:13 +0000
commit851a196e32d27f20731687b5889d93f9c453b184 (patch)
tree7536c00f187079c0ea3c47c43b8ffff041240737
parenta2d7ef171aa173a4cb882c9e07f80f5457487023 (diff)
downloaddrakx-backup-do-not-use-851a196e32d27f20731687b5889d93f9c453b184.tar
drakx-backup-do-not-use-851a196e32d27f20731687b5889d93f9c453b184.tar.gz
drakx-backup-do-not-use-851a196e32d27f20731687b5889d93f9c453b184.tar.bz2
drakx-backup-do-not-use-851a196e32d27f20731687b5889d93f9c453b184.tar.xz
drakx-backup-do-not-use-851a196e32d27f20731687b5889d93f9c453b184.zip
- diskdrake:
o allow relatime on ntfs-3g (#39666)
-rw-r--r--perl-install/NEWS2
-rw-r--r--perl-install/fs/mount_options.pm2
2 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index 74e240396..6a4bf28ba 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -2,6 +2,8 @@
o fix crash while removing an item (#34413)
- harddrake:
o offer again to run drakxtv for TV cards (#39609)
+- diskdrake:
+ o allow relatime on ntfs-3g (#39666)
- diskdrake --fileshare:
o do not ask to install nautilus-filesharing if already installed (#39544)
diff --git a/perl-install/fs/mount_options.pm b/perl-install/fs/mount_options.pm
index 3eacdfb4a..6ac55584a 100644
--- a/perl-install/fs/mount_options.pm
+++ b/perl-install/fs/mount_options.pm
@@ -42,7 +42,7 @@ sub unpack {
$non_defaults->{$_} = 1 foreach @$l;
}
- $non_defaults->{relatime} = 1 if isTrueLocalFS($part);
+ $non_defaults->{relatime} = 1 if isTrueLocalFS($part) || $part->{fs_type} eq 'ntfs-3g';
$non_defaults->{encrypted} = 1;
my $defaults = { reverse %$non_defaults };