blob: 67130a58b7f6381a28b95fb9460a01230700a943 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/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 authorized keys"
cp ssh_authorized_keys ~/.ssh/authorized_keys
else
echo "Laminar queue: $SSH_ORIGINAL_COMMAND"
laminarc queue "$SSH_ORIGINAL_COMMAND"
fi
|