Works now

This commit is contained in:
Jan Christian Grünhage 2016-08-25 23:40:44 +02:00
parent e6d7c660c5
commit 957046bc4b
No known key found for this signature in database
GPG key ID: 62BEE5EB8F370DC6

View file

@ -15,15 +15,17 @@ echo -n "Hostname (ssh key):"
read hostname
DATE=`date +%Y%m%d`
comment="$DATE - $application - $hostname"
ssh-keygen -t rsa -b 8192 -C comment
cat ~.ssh/id_rsa.pub
ssh-keygen -b 8192 -t rsa -C "$comment" -f ~/.ssh/id_rsa
cat ~/.ssh/id_rsa.pub
echo "Insert this SSH key into gogs before you continue."
pause
read -n1 -rsp $'Press any key to continue...\n'
cd ~
git clone ssh://git@jcg.re:10022/jcgruenhage/.password-store.git
gpg2 --keyserver hkp://pool.sks-keyservers.net --recv-keys 691C036821A1C2A05415F572F338AD3815B5D61C 33BD6633839B232E1A24BF4262BEE5EB8F370DC6
mkdir dev
cd dev
git clone ssh://git@jcg.re:10022/jcgruenhage/scripts.git
git clone ssh://git@jcg.re:10022/jcgruenhage/homepage.git
git clone ssh://git@jcg.re:10022/klug-O-soft/kOs_Timer.git
pause() {
read -n1 -rsp $'Press any key to continue...\n'
}