bootstrap

This commit is contained in:
Marc Beninca 2024-03-23 13:36:09 +01:00
parent 545dbfe6a7
commit e1148bfdd8
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

20
cd-bootstrap Executable file
View file

@ -0,0 +1,20 @@
# ssh
mkdir --parents ~/.ssh
echo "${CD}" > ~/.ssh/id_ed25519
unset CD
chmod 400 ~/.ssh/id_ed25519
echo -n "\
|1|BcccCTMLpM9HHSgJmPu/FFOwOv0=|+3BKK02xibpCPxQ9Nghi2GbXLng= \
ssh-ed25519 \
AAAAC3NzaC1lZDI1NTE5AAAAIPHCNcgHlQoiNTXfnUZYvHz9OZwYsmBCrSSV7a7Zche5
" > ~/.ssh/known_hosts
# packages
apt-get install --yes \
'python3' \
'rsync' \
'tree' \