add additional install scripts, fix staging deploy

This commit is contained in:
Albert Yi
2018-10-16 09:47:58 -07:00
parent 3fbe1629e0
commit 66ce07e993
3 changed files with 113 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
#!/bin/sh
HOSTS="kagamihara shima saitou"
echo "Enter new SSH pubkey: "
read $key
for host in $HOSTS ; do
ssh danbooru@$host echo $key >> .ssh/authorized_keys
done