sources
This commit is contained in:
parent
4a3a8fb9aa
commit
e3822371ae
1 changed files with 52 additions and 2 deletions
54
cd.sh
54
cd.sh
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue