diff options
-rw-r--r-- | NEWS | 2 | ||||
-rwxr-xr-x | draklive-install | 3 |
2 files changed, 5 insertions, 0 deletions
@@ -1,3 +1,5 @@ +- force regeneration of initrd in installed system + 2.16 - avoid creating unwanted mount points in live system - avoid copying inactive mount points diff --git a/draklive-install b/draklive-install index 69d1b7b..bba808e 100755 --- a/draklive-install +++ b/draklive-install @@ -331,6 +331,9 @@ sub complete_install { delete $autologin->{user}; any::set_autologin($in->do_pkgs, $autologin); + #- force regeneration of initrd + unlink($_) foreach glob("$::prefix/boot/initrd*.img"); + #- allow to install doc in disk install substInFile { undef $_ if /^\%_excludedocs/ } $::prefix . '/etc/rpm/macros'; |