parent
b88d8caa22
commit
b07b446fa5
1 changed files with 4 additions and 4 deletions
8
cd.sh
8
cd.sh
|
@ -25,7 +25,7 @@ CD_STEP=0
|
||||||
|
|
||||||
function cd_step {
|
function cd_step {
|
||||||
if [ "${1}" ] ; then
|
if [ "${1}" ] ; then
|
||||||
((CD_STEP++))
|
CD_STEP=$((CD_STEP+1))
|
||||||
echo "
|
echo "
|
||||||
↕ ${CD_STEP} ↔ ${1}
|
↕ ${CD_STEP} ↔ ${1}
|
||||||
"
|
"
|
||||||
|
@ -54,6 +54,9 @@ local text=''
|
||||||
|| exit
|
|| exit
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function cd_main {
|
||||||
|
cd_set_dns
|
||||||
|
|
||||||
cd_step "configure package manager"
|
cd_step "configure package manager"
|
||||||
echo -n "\
|
echo -n "\
|
||||||
Acquire::Check-Valid-Until True;
|
Acquire::Check-Valid-Until True;
|
||||||
|
@ -115,9 +118,6 @@ apt-get clean \
|
||||||
cd_step "bootstrap"
|
cd_step "bootstrap"
|
||||||
"${DIRECTORY}/bootstrap.sh"
|
"${DIRECTORY}/bootstrap.sh"
|
||||||
|
|
||||||
|
|
||||||
function cd_main {
|
|
||||||
cd_set_dns
|
|
||||||
}
|
}
|
||||||
|
|
||||||
cd_main
|
cd_main
|
||||||
|
|
Loading…
Reference in a new issue