cd_,dns
All checks were successful
/ job (push) Successful in 1m50s

This commit is contained in:
Marc Beninca 2024-04-26 14:18:44 +02:00
parent a16f57816a
commit b88d8caa22
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

52
cd.sh
View file

@ -23,7 +23,7 @@ case "${CD_OS_NAME}" in
esac esac
CD_STEP=0 CD_STEP=0
function step { function cd_step {
if [ "${1}" ] ; then if [ "${1}" ] ; then
((CD_STEP++)) ((CD_STEP++))
echo " echo "
@ -32,7 +32,7 @@ function step {
fi fi
} }
function write { function cd_write {
local file="${1}" local file="${1}"
local text="${2}" local text="${2}"
if [ "${file}" ] ; then if [ "${file}" ] ; then
@ -42,14 +42,19 @@ local text="${2}"
fi fi
} }
step "set name servers" function cd_set_dns {
for server in "${CD_DNS_SERVERS[@]}" ; do local server
echo "nameserver ${server}" \ local text=''
>> "${CD_DNS_FILE}" \ cd_step "set name servers"
for server in "${CD_DNS_SERVERS[@]}" ; do
text+="nameserver ${server}
"
done
cd_write "${CD_DNS_FILE}" "${text}" \
|| exit || exit
done }
step "configure package manager" cd_step "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;
@ -58,7 +63,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
step "configure package repositories" cd_step "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
@ -67,45 +72,52 @@ deb https://deb.debian.org/debian-security bookworm-security main
" > '/etc/apt/sources.list' \ " > '/etc/apt/sources.list' \
|| exit || exit
step "disable package verification" cd_step "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
step "update package catalog" cd_step "update package catalog"
apt-get update \ apt-get update \
|| exit || exit
step "install CA certificates package" cd_step "install CA certificates package"
apt-get install --yes 'ca-certificates' \ apt-get install --yes 'ca-certificates' \
|| exit || exit
step "enable package verification" cd_step "enable package verification"
rm '/etc/apt/apt.conf.d/https' \ rm '/etc/apt/apt.conf.d/https' \
|| exit || exit
step "update package catalog" cd_step "update package catalog"
apt-get update \ apt-get update \
|| exit || exit
step "upgrade packages" cd_step "upgrade packages"
apt-get upgrade --yes \ apt-get upgrade --yes \
|| exit || exit
step "install Git" cd_step "install Git"
apt-get install --yes 'git' \ apt-get install --yes 'git' \
|| exit || exit
DIRECTORY="$(mktemp --directory)" \ DIRECTORY="$(mktemp --directory)" \
|| exit || exit
step "clone Continuous Delivery" cd_step "clone Continuous Delivery"
git clone \ git clone \
"${GITHUB_SERVER_URL}/${CD_REPOSITORY}" \ "${GITHUB_SERVER_URL}/${CD_REPOSITORY}" \
"${DIRECTORY}" \ "${DIRECTORY}" \
|| exit || exit
step "install Python" cd_step "install Python"
apt-get install --yes 'python3' \ apt-get install --yes 'python3' \
|| exit || exit
step "clean package cache" cd_step "clean package cache"
apt-get clean \ apt-get clean \
|| exit || exit
step "bootstrap" cd_step "bootstrap"
"${DIRECTORY}/bootstrap.sh" "${DIRECTORY}/bootstrap.sh"
function cd_main {
cd_set_dns
}
cd_main