This commit is contained in:
Marc Beninca 2024-04-25 15:30:32 +02:00
parent 4a3a8fb9aa
commit e3822371ae
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

54
cd.sh
View file

@ -2,33 +2,83 @@ NAMESERVERS=(
'9.9.9.9'
)
PACKAGES=(
'ca-certificates'
'git'
'python3'
)
REPOSITORY='rwx.work/cd'
echo '
1/11 set name servers
'
for nameserver in "${NAMESERVERS[@]}" ; do
echo "nameserver ${nameserver}" \
>> '/etc/resolv.conf' \
|| exit
done
echo '
2/11 configure package manager
'
echo -n "\
APT::Get::Show-Versions True;
APT::Install-Recommends False;
APT::Install-Suggests False;
" > '/etc/apt/apt.conf.d/apt.conf' \
|| exit
echo '
3/11 configure package repositories
'
echo -n "\
deb https://deb.debian.org/debian bookworm main
deb https://deb.debian.org/debian-backports bookworm main
deb https://deb.debian.org/debian-updates bookworm main
deb https://deb.debian.org/debian-security bookworm-security main
" > '/etc/apt/sources.list' \
|| exit
echo '
4/11 update package catalog
'
apt-get update \
|| exit
apt-get install --yes "${PACKAGES[@]}" \
echo '
5/11 install CA certificates package
'
apt-get install --yes 'ca-certificates' \
|| exit
echo '
6/11 update package catalog
'
apt-get update \
|| exit
echo '
7/11 upgrade packages
'
apt-get upgrade --yes \
|| exit
echo '
8/11 install Git
'
apt-get install --yes 'git' \
|| exit
DIRECTORY="$(mktemp --directory)" \
|| exit
echo '
9/11 clone Continuous Delivery
'
git clone \
"${GITHUB_SERVER_URL}/${REPOSITORY}" \
"${DIRECTORY}" \
|| exit
echo '
10/11 install Python
'
apt-get install --yes 'python3' \
|| exit
echo '
11/11 bootstrap
'
"${DIRECTORY}/bootstrap.sh"