parent
800222525c
commit
8004d78a36
1 changed files with 20 additions and 16 deletions
36
cd.sh
36
cd.sh
|
@ -21,21 +21,25 @@ case "${CD_OS_NAME}" in
|
||||||
exit 1
|
exit 1
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
CD_STEP=0
|
||||||
|
|
||||||
function step {
|
function step {
|
||||||
[ "${1}" ] && echo "
|
if [ "${1}" ] ; then
|
||||||
${1}
|
((CD_STEP++))
|
||||||
|
echo "
|
||||||
|
↕ ${CD_STEP} ↔ ${1}
|
||||||
"
|
"
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
step " 1/14 set name servers"
|
step "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
|
||||||
|
|
||||||
step " 2/14 configure package manager"
|
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;
|
||||||
|
@ -44,7 +48,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 " 3/14 configure package repositories"
|
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
|
||||||
|
@ -53,45 +57,45 @@ deb https://deb.debian.org/debian-security bookworm-security main
|
||||||
" > '/etc/apt/sources.list' \
|
" > '/etc/apt/sources.list' \
|
||||||
|| exit
|
|| exit
|
||||||
|
|
||||||
step " 4/14 disable package verification"
|
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 " 5/14 update package catalog"
|
step "update package catalog"
|
||||||
apt-get update \
|
apt-get update \
|
||||||
|| exit
|
|| exit
|
||||||
step " 6/14 install CA certificates package"
|
step "install CA certificates package"
|
||||||
apt-get install --yes 'ca-certificates' \
|
apt-get install --yes 'ca-certificates' \
|
||||||
|| exit
|
|| exit
|
||||||
step " 7/14 enable package verification"
|
step "enable package verification"
|
||||||
rm '/etc/apt/apt.conf.d/https' \
|
rm '/etc/apt/apt.conf.d/https' \
|
||||||
|| exit
|
|| exit
|
||||||
|
|
||||||
step " 8/14 update package catalog"
|
step "update package catalog"
|
||||||
apt-get update \
|
apt-get update \
|
||||||
|| exit
|
|| exit
|
||||||
step " 9/14 upgrade packages"
|
step "upgrade packages"
|
||||||
apt-get upgrade --yes \
|
apt-get upgrade --yes \
|
||||||
|| exit
|
|| exit
|
||||||
|
|
||||||
step "10/14 install Git"
|
step "install Git"
|
||||||
apt-get install --yes 'git' \
|
apt-get install --yes 'git' \
|
||||||
|| exit
|
|| exit
|
||||||
|
|
||||||
DIRECTORY="$(mktemp --directory)" \
|
DIRECTORY="$(mktemp --directory)" \
|
||||||
|| exit
|
|| exit
|
||||||
step "11/14 clone Continuous Delivery"
|
step "clone Continuous Delivery"
|
||||||
git clone \
|
git clone \
|
||||||
"${GITHUB_SERVER_URL}/${CD_REPOSITORY}" \
|
"${GITHUB_SERVER_URL}/${CD_REPOSITORY}" \
|
||||||
"${DIRECTORY}" \
|
"${DIRECTORY}" \
|
||||||
|| exit
|
|| exit
|
||||||
|
|
||||||
step "12/14 install Python"
|
step "install Python"
|
||||||
apt-get install --yes 'python3' \
|
apt-get install --yes 'python3' \
|
||||||
|| exit
|
|| exit
|
||||||
step "13/14 clean package cache"
|
step "clean package cache"
|
||||||
apt-get clean \
|
apt-get clean \
|
||||||
|| exit
|
|| exit
|
||||||
step "14/14 bootstrap"
|
step "bootstrap"
|
||||||
"${DIRECTORY}/bootstrap.sh"
|
"${DIRECTORY}/bootstrap.sh"
|
||||||
|
|
Loading…
Reference in a new issue