From cf3f204db9c21563157706bd68aadcbe1c1e496b Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Fri, 18 Nov 2016 19:21:02 +0000 Subject: add some messages, to give users some hints about what is happening --- libvasile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/libvasile b/libvasile index 2b3245c..7f25929 100755 --- a/libvasile +++ b/libvasile @@ -150,7 +150,7 @@ chrootstart () { } chrootdevtree () { - einfo "Injecting devmode portage tree" + einfo "Injecting srcmode (full) portage tree" sleep 1 chroot "$overlaydir" su - "$chrootuser" -c "$chrootdevtree" } @@ -215,7 +215,7 @@ isostop () { } isousertree () { - einfo "Injecting usermode portage tree" + einfo "Injecting binmode (minimal) portage tree" sleep 1 chroot "$isosyncdir" su - "$isouser" -c "$isousertree" } @@ -347,12 +347,14 @@ resetmode () { fetchportageconfig() { pushd /opt > /dev/null 2>&1 + einfo "Injecting "$releasename" buildsystem" git clone https://gitlab.com/redcore/redcore-build.git popd > /dev/null 2>&1 } fetchfullportagetree() { if [[ ! -d "$portagedir"/.git ]] ; then + einfo "Injecting mixedmode/srcmode (full) portage tree" cd "$portagedir" && git init > /dev/null 2>&1 git remote add origin https://gitlab.com/redcore/portage.git git pull --depth=1 origin master @@ -363,6 +365,7 @@ fetchfullportagetree() { fetchminimalportagetree() { if [[ ! -d "$portagedir"/.git ]] ; then + einfo "Injecting binmode (minimal) portage tree" cd "$portagedir" && git init > /dev/null 2>&1 git remote add origin https://gitlab.com/redcore/portage.git git config core.sparsecheckout true -- cgit v1.2.3