"
This commit is contained in:
parent
aa6decf3a8
commit
779cf7f220
1 changed files with 24 additions and 24 deletions
48
cd.sh
48
cd.sh
|
@ -3,18 +3,18 @@ NAMESERVERS=(
|
||||||
)
|
)
|
||||||
REPOSITORY='rwx.work/cd'
|
REPOSITORY='rwx.work/cd'
|
||||||
|
|
||||||
echo '
|
echo "
|
||||||
1/12 set name servers
|
1/12 set name servers
|
||||||
'
|
"
|
||||||
for nameserver in "${NAMESERVERS[@]}" ; do
|
for nameserver in "${NAMESERVERS[@]}" ; do
|
||||||
echo "nameserver ${nameserver}" \
|
echo "nameserver ${nameserver}" \
|
||||||
>> '/etc/resolv.conf' \
|
>> '/etc/resolv.conf' \
|
||||||
|| exit
|
|| exit
|
||||||
done
|
done
|
||||||
|
|
||||||
echo '
|
echo "
|
||||||
2/12 configure package manager
|
2/12 configure package manager
|
||||||
'
|
"
|
||||||
echo -n "\
|
echo -n "\
|
||||||
Acquire::Check-Valid-Until True;
|
Acquire::Check-Valid-Until True;
|
||||||
APT::Get::Show-Versions True;
|
APT::Get::Show-Versions True;
|
||||||
|
@ -23,9 +23,9 @@ APT::Install-Suggests False;
|
||||||
Dir::Etc::SourceParts '';
|
Dir::Etc::SourceParts '';
|
||||||
" > '/etc/apt/apt.conf.d/apt.conf' \
|
" > '/etc/apt/apt.conf.d/apt.conf' \
|
||||||
|| exit
|
|| exit
|
||||||
echo '
|
echo "
|
||||||
3/12 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
|
||||||
deb https://deb.debian.org/debian bookworm-backports main
|
deb https://deb.debian.org/debian bookworm-backports main
|
||||||
|
@ -34,54 +34,54 @@ deb https://deb.debian.org/debian-security bookworm-security main
|
||||||
" > '/etc/apt/sources.list' \
|
" > '/etc/apt/sources.list' \
|
||||||
|| exit
|
|| exit
|
||||||
|
|
||||||
echo '
|
echo "
|
||||||
4/12 update package catalog
|
4/12 update package catalog
|
||||||
'
|
"
|
||||||
apt-get update \
|
apt-get update \
|
||||||
|| exit
|
|| exit
|
||||||
echo '
|
echo "
|
||||||
5/12 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/12 update package catalog
|
6/12 update package catalog
|
||||||
'
|
"
|
||||||
apt-get update \
|
apt-get update \
|
||||||
|| exit
|
|| exit
|
||||||
echo '
|
echo "
|
||||||
7/12 upgrade packages
|
7/12 upgrade packages
|
||||||
'
|
"
|
||||||
apt-get upgrade --yes \
|
apt-get upgrade --yes \
|
||||||
|| exit
|
|| exit
|
||||||
|
|
||||||
echo '
|
echo "
|
||||||
8/12 install Git
|
8/12 install Git
|
||||||
'
|
"
|
||||||
apt-get install --yes 'git' \
|
apt-get install --yes 'git' \
|
||||||
|| exit
|
|| exit
|
||||||
|
|
||||||
DIRECTORY="$(mktemp --directory)" \
|
DIRECTORY="$(mktemp --directory)" \
|
||||||
|| exit
|
|| exit
|
||||||
echo '
|
echo "
|
||||||
9/12 clone Continuous Delivery
|
9/12 clone Continuous Delivery
|
||||||
'
|
"
|
||||||
git clone \
|
git clone \
|
||||||
"${GITHUB_SERVER_URL}/${REPOSITORY}" \
|
"${GITHUB_SERVER_URL}/${REPOSITORY}" \
|
||||||
"${DIRECTORY}" \
|
"${DIRECTORY}" \
|
||||||
|| exit
|
|| exit
|
||||||
|
|
||||||
echo '
|
echo "
|
||||||
10/12 install Python
|
10/12 install Python
|
||||||
'
|
"
|
||||||
apt-get install --yes 'python3' \
|
apt-get install --yes 'python3' \
|
||||||
|| exit
|
|| exit
|
||||||
echo '
|
echo "
|
||||||
11/12 clean package cache
|
11/12 clean package cache
|
||||||
'
|
"
|
||||||
apt-get clean \
|
apt-get clean \
|
||||||
|| exit
|
|| exit
|
||||||
echo '
|
echo "
|
||||||
12/12 bootstrap
|
12/12 bootstrap
|
||||||
'
|
"
|
||||||
"${DIRECTORY}/bootstrap.sh"
|
"${DIRECTORY}/bootstrap.sh"
|
||||||
|
|
Loading…
Reference in a new issue