split
All checks were successful
/ job (push) Successful in 2m14s

This commit is contained in:
Marc Beninca 2024-04-26 13:44:31 +02:00
parent 0c10c4f4ef
commit c63b486832
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

60
cd.sh
View file

@ -22,18 +22,20 @@ case "${CD_OS_NAME}" in
;; ;;
esac esac
echo " function split {
1/14 set name servers [ "${1}" ] && echo "
${1}
" "
}
split " 1/14 set name servers"
for server in "${CD_DNS_SERVERS[@]}" ; do for server in "${CD_DNS_SERVERS[@]}" ; do
echo "nameserver ${server}" \ echo "nameserver ${server}" \
>> "${CD_DNS_FILE}" \ >> "${CD_DNS_FILE}" \
|| exit || exit
done done
echo " split " 2/14 configure package manager"
2/14 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;
@ -42,9 +44,7 @@ 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 " split " 3/14 configure package repositories"
3/14 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
@ -53,67 +53,45 @@ deb https://deb.debian.org/debian-security bookworm-security main
" > '/etc/apt/sources.list' \ " > '/etc/apt/sources.list' \
|| exit || exit
echo " split " 4/14 disable package verification"
4/14 disable package verification
"
echo -n "\ echo -n "\
Acquire::https::Verify-Peer False; Acquire::https::Verify-Peer False;
" > '/etc/apt/apt.conf.d/https' \ " > '/etc/apt/apt.conf.d/https' \
|| exit || exit
echo " split " 5/14 update package catalog"
5/14 update package catalog
"
apt-get update \ apt-get update \
|| exit || exit
echo " split " 6/14 install CA certificates package"
6/14 install CA certificates package
"
apt-get install --yes 'ca-certificates' \ apt-get install --yes 'ca-certificates' \
|| exit || exit
echo " split " 7/14 enable package verification"
7/14 enable package verification
"
rm '/etc/apt/apt.conf.d/https' \ rm '/etc/apt/apt.conf.d/https' \
|| exit || exit
echo " split " 8/14 update package catalog"
8/14 update package catalog
"
apt-get update \ apt-get update \
|| exit || exit
echo " split " 9/14 upgrade packages"
9/14 upgrade packages
"
apt-get upgrade --yes \ apt-get upgrade --yes \
|| exit || exit
echo " split "10/14 install Git"
10/14 install Git
"
apt-get install --yes 'git' \ apt-get install --yes 'git' \
|| exit || exit
DIRECTORY="$(mktemp --directory)" \ DIRECTORY="$(mktemp --directory)" \
|| exit || exit
echo " split "11/14 clone Continuous Delivery"
11/14 clone Continuous Delivery
"
git clone \ git clone \
"${GITHUB_SERVER_URL}/${CD_REPOSITORY}" \ "${GITHUB_SERVER_URL}/${CD_REPOSITORY}" \
"${DIRECTORY}" \ "${DIRECTORY}" \
|| exit || exit
echo " split "12/14 install Python"
12/14 install Python
"
apt-get install --yes 'python3' \ apt-get install --yes 'python3' \
|| exit || exit
echo " split "13/14 clean package cache"
13/14 clean package cache
"
apt-get clean \ apt-get clean \
|| exit || exit
echo " split "14/14 bootstrap"
14/14 bootstrap
"
"${DIRECTORY}/bootstrap.sh" "${DIRECTORY}/bootstrap.sh"