clean
This commit is contained in:
parent
e893426333
commit
aa6decf3a8
1 changed files with 16 additions and 11 deletions
27
cd.sh
27
cd.sh
|
@ -4,7 +4,7 @@ NAMESERVERS=(
|
||||||
REPOSITORY='rwx.work/cd'
|
REPOSITORY='rwx.work/cd'
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
1/11 set name servers
|
1/12 set name servers
|
||||||
'
|
'
|
||||||
for nameserver in "${NAMESERVERS[@]}" ; do
|
for nameserver in "${NAMESERVERS[@]}" ; do
|
||||||
echo "nameserver ${nameserver}" \
|
echo "nameserver ${nameserver}" \
|
||||||
|
@ -13,7 +13,7 @@ for nameserver in "${NAMESERVERS[@]}" ; do
|
||||||
done
|
done
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
2/11 configure package manager
|
2/12 configure package manager
|
||||||
'
|
'
|
||||||
echo -n "\
|
echo -n "\
|
||||||
Acquire::Check-Valid-Until True;
|
Acquire::Check-Valid-Until True;
|
||||||
|
@ -24,7 +24,7 @@ Dir::Etc::SourceParts '';
|
||||||
" > '/etc/apt/apt.conf.d/apt.conf' \
|
" > '/etc/apt/apt.conf.d/apt.conf' \
|
||||||
|| exit
|
|| exit
|
||||||
echo '
|
echo '
|
||||||
3/11 configure package repositories
|
3/12 configure package repositories
|
||||||
'
|
'
|
||||||
echo -n "\
|
echo -n "\
|
||||||
deb https://deb.debian.org/debian bookworm main
|
deb https://deb.debian.org/debian bookworm main
|
||||||
|
@ -35,28 +35,28 @@ deb https://deb.debian.org/debian-security bookworm-security main
|
||||||
|| exit
|
|| exit
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
4/11 update package catalog
|
4/12 update package catalog
|
||||||
'
|
'
|
||||||
apt-get update \
|
apt-get update \
|
||||||
|| exit
|
|| exit
|
||||||
echo '
|
echo '
|
||||||
5/11 install CA certificates package
|
5/12 install CA certificates package
|
||||||
'
|
'
|
||||||
apt-get install --yes 'ca-certificates' \
|
apt-get install --yes 'ca-certificates' \
|
||||||
|| exit
|
|| exit
|
||||||
echo '
|
echo '
|
||||||
6/11 update package catalog
|
6/12 update package catalog
|
||||||
'
|
'
|
||||||
apt-get update \
|
apt-get update \
|
||||||
|| exit
|
|| exit
|
||||||
echo '
|
echo '
|
||||||
7/11 upgrade packages
|
7/12 upgrade packages
|
||||||
'
|
'
|
||||||
apt-get upgrade --yes \
|
apt-get upgrade --yes \
|
||||||
|| exit
|
|| exit
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
8/11 install Git
|
8/12 install Git
|
||||||
'
|
'
|
||||||
apt-get install --yes 'git' \
|
apt-get install --yes 'git' \
|
||||||
|| exit
|
|| exit
|
||||||
|
@ -64,7 +64,7 @@ apt-get install --yes 'git' \
|
||||||
DIRECTORY="$(mktemp --directory)" \
|
DIRECTORY="$(mktemp --directory)" \
|
||||||
|| exit
|
|| exit
|
||||||
echo '
|
echo '
|
||||||
9/11 clone Continuous Delivery
|
9/12 clone Continuous Delivery
|
||||||
'
|
'
|
||||||
git clone \
|
git clone \
|
||||||
"${GITHUB_SERVER_URL}/${REPOSITORY}" \
|
"${GITHUB_SERVER_URL}/${REPOSITORY}" \
|
||||||
|
@ -72,11 +72,16 @@ git clone \
|
||||||
|| exit
|
|| exit
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
10/11 install Python
|
10/12 install Python
|
||||||
'
|
'
|
||||||
apt-get install --yes 'python3' \
|
apt-get install --yes 'python3' \
|
||||||
|| exit
|
|| exit
|
||||||
echo '
|
echo '
|
||||||
11/11 bootstrap
|
11/12 clean package cache
|
||||||
|
'
|
||||||
|
apt-get clean \
|
||||||
|
|| exit
|
||||||
|
echo '
|
||||||
|
12/12 bootstrap
|
||||||
'
|
'
|
||||||
"${DIRECTORY}/bootstrap.sh"
|
"${DIRECTORY}/bootstrap.sh"
|
||||||
|
|
Loading…
Reference in a new issue