File: setup_archive.sh

package info (click to toggle)
uhub 0.5.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,624 kB
  • sloc: ansic: 19,102; xml: 607; perl: 463; sh: 403; python: 239; makefile: 9
file content (26 lines) | stat: -rwxr-xr-x 479 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/bin/bash

PUB="${HOME}/.ssh/id_rsa.pub"
CFG="${HOME}/.ssh/config"

if [ ! "`grep build-archive ${CFG}`" ]; then
echo "Updating ssh config (${CFG})..."
cat >> ${CFG} <<EOF

Host build-archive
	ForwardX11	no
	HostName	login.domeneshop.no
	User		extatic
EOF
else
echo "ssh config seems OK (${CFG})"
fi

if [ ! -f ${PUB} ]; then
	echo "No id_rsa.pub - run ssh-keygen"
	exit 1
fi

echo "Copying public key (${PUB})..."
cat ${PUB} | ssh build-archive "cat >> .ssh/authorized_keys"