30 lines
507 B
Bash
30 lines
507 B
Bash
NAMESERVERS=(
|
|
'9.9.9.9'
|
|
)
|
|
PACKAGES=(
|
|
'git'
|
|
)
|
|
REPOSITORY='rwx.work/cd'
|
|
|
|
for nameserver in "${NAMESERVERS[@]}" ; do
|
|
echo "nameserver ${nameserver}" \
|
|
>> '/etc/resolv.conf' \
|
|
|| exit
|
|
done
|
|
|
|
echo -n "\
|
|
APT::Get::Show-Versions True;
|
|
" > '/etc/apt/apt.conf.d/apt.conf' \
|
|
|| exit
|
|
apt-get update \
|
|
|| exit
|
|
apt-get install --yes "${PACKAGES[@]}" \
|
|
|| exit
|
|
|
|
DIRECTORY="$(mktemp --directory)" \
|
|
|| exit
|
|
git clone \
|
|
"${GITHUB_SERVER_URL}/${REPOSITORY}" \
|
|
"${DIRECTORY}" \
|
|
|| exit
|
|
"${DIRECTORY}/bootstrap.sh"
|