summaryrefslogtreecommitdiff
path: root/bin/slave-build-connect
blob: 87c0e31bb8f563c77165e062bd5106b796e084b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

. "${0%/*}/../conf/default.conf"

if [ "${SSH_ORIGINAL_COMMAND%% *}" = "get-assignment" ] || \
  [ "${SSH_ORIGINAL_COMMAND%% *}" = "return-assignment" ]; then
  slave="$1" /bin/sh -c "${base_dir}/bin/${SSH_ORIGINAL_COMMAND}"
else
  >&2 echo "Invalid command: '${SSH_ORIGINAL_COMMAND%% *}'"
  exit 1
fi