diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2020-04-14 17:02:32 +0200 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2020-04-14 17:06:59 +0200 |
commit | f8465e3a1603cea85a55d17612848fd87f35e5a1 (patch) | |
tree | ff8af241bd917d6bdd4374b4e059898fb032193e | |
parent | 1fa9cfbfd0eb74aac4b367ef4f7be82ab64c475d (diff) | |
download | drakx-f8465e3a1603cea85a55d17612848fd87f35e5a1.tar drakx-f8465e3a1603cea85a55d17612848fd87f35e5a1.tar.gz drakx-f8465e3a1603cea85a55d17612848fd87f35e5a1.tar.bz2 drakx-f8465e3a1603cea85a55d17612848fd87f35e5a1.tar.xz drakx-f8465e3a1603cea85a55d17612848fd87f35e5a1.zip |
ntfsprogs has been renamed ntfs-3g
which still provides the former but still
-rw-r--r-- | perl-install/diskdrake/resize_ntfs.pm | 2 | ||||
-rw-r--r-- | perl-install/fs/format.pm | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/perl-install/diskdrake/resize_ntfs.pm b/perl-install/diskdrake/resize_ntfs.pm index 8fb6e0da6..db591e968 100644 --- a/perl-install/diskdrake/resize_ntfs.pm +++ b/perl-install/diskdrake/resize_ntfs.pm @@ -15,7 +15,7 @@ sub new { sub check_prog { my ($in) = @_; # perl_checker: $in = interactive->new #- ensure_binary_is_installed checks binary chrooted, whereas we run the binary non-chrooted (pb for Mageia One) - $::isInstall || whereis_binary('ntfsresize') || $in->do_pkgs->ensure_binary_is_installed('ntfsprogs', 'ntfsresize'); + $::isInstall || whereis_binary('ntfsresize') || $in->do_pkgs->ensure_binary_is_installed('ntfs-3g', 'ntfsresize'); } sub min_size { diff --git a/perl-install/fs/format.pm b/perl-install/fs/format.pm index a7c5e49a6..ab7829eea 100644 --- a/perl-install/fs/format.pm +++ b/perl-install/fs/format.pm @@ -37,8 +37,8 @@ my %cmds = ( dos => [ 'dosfstools', 'mkdosfs' ], vfat => [ 'dosfstools', 'mkdosfs', '-F', '32' ], swap => [ 'util-linux', 'mkswap' ], - ntfs => [ 'ntfsprogs', 'mkntfs', '--fast' ], - 'ntfs-3g' => [ 'ntfsprogs', 'mkntfs', '--fast' ], + ntfs => [ 'ntfs-3g', 'mkntfs', '--fast' ], + 'ntfs-3g' => [ 'ntfs-3g', 'mkntfs', '--fast' ], btrfs => [ 'btrfs-progs', 'mkfs.btrfs', '-f' ], nilfs2 => [ 'nilfs-utils', 'mkfs.nilfs2', '-f' ], ); @@ -89,8 +89,8 @@ my %edit_LABEL = ( # dos => [ 'mtools', 'mlabel', '-i' ], vfat => [ 'mtools', 'mlabel', '-i' ], swap => [ 'util-linux', 'swaplabel', '-L' ], - ntfs => [ 'ntfsprogs', 'ntfslabel' ], - 'ntfs-3g' => [ 'ntfsprogs', 'ntfslabel' ], + ntfs => [ 'ntfs-3g', 'ntfslabel' ], + 'ntfs-3g' => [ 'ntfs-3g', 'ntfslabel' ], btrfs => [ 'btrfs-progs', 'btrfs', 'filesystem', 'label' ], nilfs2 => [ 'nilfs-utils', 'nilfs-tune', '-L' ], ); |