diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-02-26 00:27:18 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-02-26 00:27:18 +0000 |
commit | e1f4904d5e50fc3ae3a3f3035b1981658fe7c80e (patch) | |
tree | 0d890a5931089e37f4c01097d09fa1c401a3f990 /perl-install/install_interactive.pm | |
parent | 068a1d41c1a96b2f2c81ddaa572c4ed01b3829e9 (diff) | |
download | drakx-e1f4904d5e50fc3ae3a3f3035b1981658fe7c80e.tar drakx-e1f4904d5e50fc3ae3a3f3035b1981658fe7c80e.tar.gz drakx-e1f4904d5e50fc3ae3a3f3035b1981658fe7c80e.tar.bz2 drakx-e1f4904d5e50fc3ae3a3f3035b1981658fe7c80e.tar.xz drakx-e1f4904d5e50fc3ae3a3f3035b1981658fe7c80e.zip |
after ntfs resize, warn user that on Windows next boot fsck will be done
Diffstat (limited to 'perl-install/install_interactive.pm')
-rw-r--r-- | perl-install/install_interactive.pm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/perl-install/install_interactive.pm b/perl-install/install_interactive.pm index 2ef9f73d8..674fa7ded 100644 --- a/perl-install/install_interactive.pm +++ b/perl-install/install_interactive.pm @@ -189,6 +189,9 @@ When sure, press Ok.")) or return; die \N("FAT resizing failed: %s", formatError($err)); } + $o->ask_warn('', N("To ensure data integrity after resizing the partition(s), +filesystem checks will be run on your next boot into Windows(TM)")) if !isFat($part); + $part->{isFormatted} = 1; $hd->{isDirty} = $hd->{needKernelReread} = 1; partition_table::adjust_local_extended($hd, $part); |