Compare commits
2 commits
003deb6455
...
6cde243005
Author | SHA1 | Date | |
---|---|---|---|
6cde243005 | |||
358fd7d687 |
2 changed files with 44 additions and 24 deletions
|
@ -1,20 +1,28 @@
|
||||||
|
KEY_ALGORITHM='ed25519'
|
||||||
|
KEY_PATH=".ssh/id_ed25519"
|
||||||
|
KEY_PUBLIC='AAAAC3NzaC1lZDI1NTE5AAAAIPHCNcgHlQoiNTXfnUZYvHz9OZwYsmBCrSSV7a7Zche5'
|
||||||
|
PACKAGES=(
|
||||||
|
'python3'
|
||||||
|
'rsync'
|
||||||
|
'tree'
|
||||||
|
)
|
||||||
|
SERVER="$(basename ${GITHUB_SERVER_URL})"
|
||||||
|
|
||||||
# ssh
|
# ssh
|
||||||
|
|
||||||
mkdir --parents ~/.ssh
|
mkdir '.ssh' \
|
||||||
|
|| exit
|
||||||
|
|
||||||
echo "${CD}" > ~/.ssh/id_ed25519
|
echo "${CD}" > "${KEY_PATH}" \
|
||||||
|
|| exit
|
||||||
unset CD
|
unset CD
|
||||||
chmod 400 ~/.ssh/id_ed25519
|
chmod '400' "${KEY_PATH}" \
|
||||||
|
|| exit
|
||||||
|
|
||||||
echo -n "\
|
echo "${SERVER} ssh-${KEY_ALGORITHM} ${KEY_PUBLIC}" \
|
||||||
|1|BcccCTMLpM9HHSgJmPu/FFOwOv0=|+3BKK02xibpCPxQ9Nghi2GbXLng= \
|
> '.ssh/known_hosts' \
|
||||||
ssh-ed25519 \
|
|| exit
|
||||||
AAAAC3NzaC1lZDI1NTE5AAAAIPHCNcgHlQoiNTXfnUZYvHz9OZwYsmBCrSSV7a7Zche5
|
|
||||||
" > ~/.ssh/known_hosts
|
|
||||||
|
|
||||||
# packages
|
# packages
|
||||||
|
|
||||||
apt-get install --yes \
|
apt-get install --yes "${PACKAGES[@]}"
|
||||||
'python3' \
|
|
||||||
'rsync' \
|
|
||||||
'tree' \
|
|
||||||
|
|
36
cd.sh
36
cd.sh
|
@ -1,15 +1,27 @@
|
||||||
echo "\
|
NAMESERVERS=(
|
||||||
nameserver 9.9.9.9
|
'9.9.9.9'
|
||||||
" > '/etc/resolv.conf' \
|
)
|
||||||
&& \
|
PACKAGES=(
|
||||||
|
'git'
|
||||||
|
)
|
||||||
|
REPOSITORY='rwx.work/cd'
|
||||||
|
TARGET='/usr/local/sbin'
|
||||||
|
|
||||||
|
for nameserver in "${NAMESERVERS[@]}" ; do
|
||||||
|
echo "nameserver ${nameserver}" \
|
||||||
|
>> '/etc/resolv.conf' \
|
||||||
|
|| exit
|
||||||
|
done
|
||||||
|
|
||||||
apt-get update \
|
apt-get update \
|
||||||
&& \
|
|| exit
|
||||||
apt-get install \
|
|
||||||
'git' \
|
apt-get install --yes "${PACKAGES[@]}" \
|
||||||
--yes \
|
|| exit
|
||||||
&& \
|
|
||||||
git clone \
|
git clone \
|
||||||
"${GITHUB_SERVER_URL}/rwx.work/cd" \
|
"${GITHUB_SERVER_URL}/${REPOSITORY}" \
|
||||||
'/usr/local/sbin' \
|
"${TARGET}" \
|
||||||
&& \
|
|| exit
|
||||||
|
|
||||||
cd-bootstrap.sh
|
cd-bootstrap.sh
|
||||||
|
|
Loading…
Reference in a new issue