From 6b428f6744fd9b2cc0aef1c6107a98ac610c0bcb Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Sat, 8 Oct 2022 19:04:20 +0200 Subject: [PATCH] add info pages to full system --- usr/bin/archboot-update-installer.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr/bin/archboot-update-installer.sh b/usr/bin/archboot-update-installer.sh index 70af1a22b..8d2b0605a 100755 --- a/usr/bin/archboot-update-installer.sh +++ b/usr/bin/archboot-update-installer.sh @@ -148,10 +148,10 @@ fi if [[ "${_FULL_SYSTEM}" == "1" && ! -e "/.full-system" && ! -e "/var/cache/pacman/pkg/archboot.db" ]]; then _initialize_zram_usr echo -e "\033[1mInitializing full Arch Linux system ...\033[0m" - echo -e "\033[1mStep 1/2:\033[0m Reinstalling installed packages and adding man-pages for Arch Linux full system ..." + echo -e "\033[1mStep 1/2:\033[0m Renstalling packages and adding info/man-pages ..." echo " This will need some time ..." pacman -Sy >/dev/tty7 2>&1 || exit 1 - pacman -Qqn | grep -v archboot | pacman -S --noconfirm man-db man-pages - >/dev/tty7 2>&1 || exit 1 + pacman -Qqn | grep -v archboot | pacman -S --noconfirm man-db man-pages texinfo - >/dev/tty7 2>&1 || exit 1 echo -e "\033[1mStep 2/2:\033[0m Cleanup package cache ..." rm /var/cache/pacman/pkg/* echo -e "\033[1mFinished. Your full Arch Linux system is ready now.\033[0m"