summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2014-08-18 17:40:12 (EDT)
committer P. J. McDermott <pj@pehjota.net>2014-08-18 17:40:12 (EDT)
commitaa385dd34aebe6bc41acb8b17778391aca4f1863 (patch)
tree1a2ef013e5868a475ba168b79110619db748b05b /lib
parent6c2f0921fb023a02b143bcf81487b89890c539d0 (diff)
install: Add some info messages
Diffstat (limited to 'lib')
-rw-r--r--lib/cmd/install.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/cmd/install.sh b/lib/cmd/install.sh
index ef955c6..3e8119a 100644
--- a/lib/cmd/install.sh
+++ b/lib/cmd/install.sh
@@ -66,6 +66,8 @@ cmd_install_main()
error 2 "$(get_msg 'cmd_install_bad_archplat')" \
"${arch}" "${plat}"
fi
+ info "$(get_msg 'cmd_install_selected_arch')" "${arch}"
+ info "$(get_msg 'cmd_install_selected_plat')" "${plat}"
if [ "x${cmd_install_opt_m+set}" = 'xset' ]; then
mirror="${cmd_install_opt_m}"
@@ -74,6 +76,7 @@ cmd_install_main()
fi
info "$(get_msg 'cmd_install_selected_mirror')" "${mirror}"
+ info "$(get_msg 'cmd_install_setting_up_chroot')"
if [ -d "${chroot}" ]; then
error 2 "$(get_msg 'cmd_install_chroot_dir_exists')" "${chroot}"
fi
@@ -81,6 +84,7 @@ cmd_install_main()
error 2 "$(get_msg 'cmd_install_mkdir_chroot_fail')" "${chroot}"
fi
+ info "$(get_msg 'cmd_install_find_pkgs')"
cmd_install_find_pkgs "${mirror}" "${suite}" "${arch}" "${plat}" \
"${chroot}"
}