Compare commits

...

20 commits

Author SHA1 Message Date
fd6a31e3be
package_tools
Some checks failed
/ job (push) Failing after 4s
2024-04-26 17:02:14 +02:00
2eec8bef61
clean
Some checks failed
/ job (push) Failing after 4s
2024-04-26 16:53:41 +02:00
3a75085157
git,python
Some checks failed
/ job (push) Failing after 3s
2024-04-26 16:50:25 +02:00
307e0a34ed
install_package
Some checks failed
/ job (push) Failing after 3s
2024-04-26 16:44:34 +02:00
0f68d49e46
upgrade
Some checks failed
/ job (push) Failing after 3s
2024-04-26 16:39:24 +02:00
bfe94ce1cb
ca,https
Some checks failed
/ job (push) Failing after 3s
2024-04-26 16:35:15 +02:00
1e1f281f54
fixes
Some checks failed
/ job (push) Failing after 3s
2024-04-26 16:29:40 +02:00
998c5f2386
update
Some checks failed
/ job (push) Failing after 4s
2024-04-26 16:27:36 +02:00
06d34057dc
https/off 2024-04-26 16:23:30 +02:00
d594bb532e
funcname
Some checks failed
/ job (push) Failing after 4s
2024-04-26 16:17:49 +02:00
d24eb62df1
repositories
Some checks failed
/ job (push) Failing after 4s
2024-04-26 16:13:35 +02:00
62cd874c26
sourceparts
Some checks failed
/ job (push) Failing after 4s
2024-04-26 16:03:17 +02:00
ffb2165383
exit 2024-04-26 15:57:23 +02:00
30eb5cc297
pkgconf 2024-04-26 15:54:37 +02:00
62036d62c2
fixes 2024-04-26 15:38:22 +02:00
b07b446fa5
fixes
Some checks failed
/ job (push) Failing after 9s
2024-04-26 15:13:27 +02:00
b88d8caa22
cd_,dns
All checks were successful
/ job (push) Successful in 1m50s
2024-04-26 14:18:44 +02:00
a16f57816a
write 2024-04-26 14:07:46 +02:00
8004d78a36
cd_step
All checks were successful
/ job (push) Successful in 1m5s
2024-04-26 13:59:41 +02:00
800222525c
step 2024-04-26 13:49:34 +02:00

209
cd.sh
View file

@ -1,3 +1,5 @@
#! /usr/bin/env bash
CD_DNS_SERVERS=( CD_DNS_SERVERS=(
'9.9.9.9' '9.9.9.9'
) )
@ -21,77 +23,180 @@ case "${CD_OS_NAME}" in
exit 1 exit 1
;; ;;
esac esac
CD_STEP=0
function split { function cd_step {
[ "${1}" ] && echo " if [ "${1}" ] ; then
${1} ((CD_STEP++))
echo "
${CD_STEP}${1}
" "
fi
} }
split " 1/14 set name servers" function cd_write {
for server in "${CD_DNS_SERVERS[@]}" ; do local file="${1}"
echo "nameserver ${server}" \ local text="${2}"
>> "${CD_DNS_FILE}" \ if [ "${file}" ] ; then
|| exit echo -n "${text}" \
done > "${file}" \
|| exit
fi
}
split " 2/14 configure package manager" function cd_set_dns_resolving {
echo -n "\ local server
Acquire::Check-Valid-Until True; local text=''
APT::Get::Show-Versions True; cd_step "${FUNCNAME}"
APT::Install-Recommends False; for server in "${CD_DNS_SERVERS[@]}" ; do
APT::Install-Suggests False; text+="nameserver ${server}
Dir::Etc::SourceParts ''; "
" > '/etc/apt/apt.conf.d/apt.conf' \ done
|| exit cd_write "${CD_DNS_FILE}" "${text}"
split " 3/14 configure package repositories" }
echo -n "\
function cd_set_packages_repositories {
cd_step "${FUNCNAME}"
case "${CD_OS_NAME}" in
'debian')
cd_write '/etc/apt/sources.list' "\
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
deb https://deb.debian.org/debian bookworm-updates main deb https://deb.debian.org/debian bookworm-updates main
deb https://deb.debian.org/debian-security bookworm-security main deb https://deb.debian.org/debian-security bookworm-security main
" > '/etc/apt/sources.list' \ "
|| exit ;;
*) exit 1 ;;
esac
}
split " 4/14 disable package verification" function cd_set_packages_configuration {
echo -n "\ cd_step "${FUNCNAME}"
case "${CD_OS_NAME}" in
'debian')
cd_write '/etc/apt/apt.conf.d/apt.conf' "\
Acquire::Check-Valid-Until True;
APT::Get::Show-Versions True;
APT::Install-Recommends False;
APT::Install-Suggests False;
Dir::Etc::SourceParts \"\";
"
;;
*) exit 1 ;;
esac
}
function cd_set_https_verification_off {
cd_step "${FUNCNAME}"
case "${CD_OS_NAME}" in
'debian')
cd_write '/etc/apt/apt.conf.d/https' "\
Acquire::https::Verify-Peer False; Acquire::https::Verify-Peer False;
" > '/etc/apt/apt.conf.d/https' \ "
|| exit ;;
split " 5/14 update package catalog" *) exit 1 ;;
apt-get update \ esac
|| exit }
split " 6/14 install CA certificates package"
apt-get install --yes 'ca-certificates' \
|| exit
split " 7/14 enable package verification"
rm '/etc/apt/apt.conf.d/https' \
|| exit
split " 8/14 update package catalog" function cd_update_packages_catalog {
apt-get update \ cd_step "${FUNCNAME}"
|| exit case "${CD_OS_NAME}" in
split " 9/14 upgrade packages" 'debian') apt-get update || exit ;;
apt-get upgrade --yes \ *) exit 1 ;;
|| exit esac
}
split "10/14 install Git" function cd_install_package {
apt-get install --yes 'git' \ if [ "${1}" ] ; then
|| exit case "${CD_OS_NAME}" in
'debian') apt-get install --yes "${1}" || exit ;;
*) exit 1 ;;
esac
fi
}
function cd_install_ca {
cd_step "${FUNCNAME}"
case "${CD_OS_NAME}" in
'debian') cd_install_package 'ca-certificates' ;;
*) exit 1 ;;
esac
}
function cd_install_git {
cd_step "${FUNCNAME}"
case "${CD_OS_NAME}" in
'debian') cd_install_package 'git' ;;
*) exit 1 ;;
esac
}
function cd_install_packages_tools {
cd_step "${FUNCNAME}"
case "${CD_OS_NAME}" in
'debian') cd_install_package 'apt-utils' ;;
*) exit 1 ;;
esac
}
function cd_install_python {
cd_step "${FUNCNAME}"
case "${CD_OS_NAME}" in
'debian') cd_install_package 'python3' ;;
*) exit 1 ;;
esac
}
function cd_set_https_verification_on {
cd_step "${FUNCNAME}"
case "${CD_OS_NAME}" in
'debian') rm '/etc/apt/apt.conf.d/https' ;;
*) exit 1 ;;
esac
}
function cd_upgrade_packages {
cd_step "${FUNCNAME}"
case "${CD_OS_NAME}" in
'debian') apt-get upgrade --yes || exit ;;
*) exit 1 ;;
esac
}
function cd_clean_packages_cache {
cd_step "${FUNCNAME}"
case "${CD_OS_NAME}" in
'debian') apt-get clean || exit ;;
*) exit 1 ;;
esac
}
function cd_main {
cd_set_dns_resolving
cd_set_packages_repositories
cd_set_packages_configuration
cd_set_https_verification_off
cd_update_packages_catalog
cd_install_packages_tools
cd_install_ca
cd_set_https_verification_on
cd_update_packages_catalog
cd_upgrade_packages
cd_install_git
cd_install_python
cd_clean_packages_cache
DIRECTORY="$(mktemp --directory)" \ DIRECTORY="$(mktemp --directory)" \
|| exit || exit
split "11/14 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
split "12/14 install Python" cd_step "bootstrap"
apt-get install --yes 'python3' \
|| exit
split "13/14 clean package cache"
apt-get clean \
|| exit
split "14/14 bootstrap"
"${DIRECTORY}/bootstrap.sh" "${DIRECTORY}/bootstrap.sh"
}
cd_main