summaryrefslogtreecommitdiff
path: root/ssh-hook.sh
blob: 4aac7486cd0e2ecfcfe41141eed38ef51321f9ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh
# Fetch cnf in build and export ssh config
if [ -z "$SSH_ORIGINAL_COMMAND" ]; then

	echo "Pull Laminar config"
	cd "$(dirname "$(readlink -f "$0")")"
	git fetch --prune --force
	git reset --hard origin/master

	echo "Deploy ssh configuration"
	cp ssh/config ~/.ssh/config
	cp ssh/authorized_keys ~/.ssh/authorized_keys

else

	echo "Laminar queue: $SSH_ORIGINAL_COMMAND"
	laminarc queue "$SSH_ORIGINAL_COMMAND"

fi