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'
|
'9.9.9.9'
|
||||||
)
|
)
|
||||||
PACKAGES=(
|
PACKAGES=(
|
||||||
'ca-certificates'
|
|
||||||
'git'
|
'git'
|
||||||
'python3'
|
'python3'
|
||||||
)
|
)
|
||||||
REPOSITORY='rwx.work/cd'
|
REPOSITORY='rwx.work/cd'
|
||||||
|
|
||||||
|
echo '
|
||||||
|
1/11 set name servers
|
||||||
|
'
|
||||||
for nameserver in "${NAMESERVERS[@]}" ; do
|
for nameserver in "${NAMESERVERS[@]}" ; do
|
||||||
echo "nameserver ${nameserver}" \
|
echo "nameserver ${nameserver}" \
|
||||||
>> '/etc/resolv.conf' \
|
>> '/etc/resolv.conf' \
|
||||||
|| exit
|
|| exit
|
||||||
done
|
done
|
||||||
|
|
||||||
|
echo '
|
||||||
|
2/11 configure package manager
|
||||||
|
'
|
||||||
echo -n "\
|
echo -n "\
|
||||||
APT::Get::Show-Versions True;
|
APT::Get::Show-Versions True;
|
||||||
APT::Install-Recommends False;
|
APT::Install-Recommends False;
|
||||||
APT::Install-Suggests False;
|
APT::Install-Suggests False;
|
||||||
" > '/etc/apt/apt.conf.d/apt.conf' \
|
" > '/etc/apt/apt.conf.d/apt.conf' \
|
||||||
|| exit
|
|| 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 \
|
apt-get update \
|
||||||
|| exit
|
|| 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
|
|| exit
|
||||||
|
|
||||||
DIRECTORY="$(mktemp --directory)" \
|
DIRECTORY="$(mktemp --directory)" \
|
||||||
|| exit
|
|| exit
|
||||||
|
echo '
|
||||||
|
9/11 clone Continuous Delivery
|
||||||
|
'
|
||||||
git clone \
|
git clone \
|
||||||
"${GITHUB_SERVER_URL}/${REPOSITORY}" \
|
"${GITHUB_SERVER_URL}/${REPOSITORY}" \
|
||||||
"${DIRECTORY}" \
|
"${DIRECTORY}" \
|
||||||
|| exit
|
|| exit
|
||||||
|
|
||||||
|
echo '
|
||||||
|
10/11 install Python
|
||||||
|
'
|
||||||
|
apt-get install --yes 'python3' \
|
||||||
|
|| exit
|
||||||
|
echo '
|
||||||
|
11/11 bootstrap
|
||||||
|
'
|
||||||
"${DIRECTORY}/bootstrap.sh"
|
"${DIRECTORY}/bootstrap.sh"
|
||||||
|
|
Loading…
Reference in a new issue