spcd/cd-init

21 lines
350 B
Text
Raw Normal View History

2024-03-23 09:39:00 +01:00
# ssh
2024-03-23 09:32:19 +01:00
mkdir --parents ~/.ssh
2024-03-23 09:39:00 +01:00
2024-03-23 00:59:39 +01:00
echo "${CD}" > ~/.ssh/id_ed25519
unset CD
chmod 400 ~/.ssh/id_ed25519
2024-03-23 09:52:09 +01:00
echo -n "\
|1|BcccCTMLpM9HHSgJmPu/FFOwOv0=|+3BKK02xibpCPxQ9Nghi2GbXLng= \
ssh-ed25519 \
AAAAC3NzaC1lZDI1NTE5AAAAIPHCNcgHlQoiNTXfnUZYvHz9OZwYsmBCrSSV7a7Zche5
" > ~/.ssh/known_hosts
2024-03-23 12:10:20 +01:00
# packages
2024-03-23 09:52:09 +01:00
2024-03-23 12:10:20 +01:00
apt-get install --yes \
'python3' \
'rsync' \
'tree' \