diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2020-06-01 22:14:26 +0200 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2020-06-01 22:14:26 +0200 |
commit | a1f34001696c44139b668918ea52c1add0dde7ea (patch) | |
tree | af4ea86dfe4ac5a696e3c9eb43935ab9ebb063d4 /tasks/jenkins | |
parent | f33ea96125c63e112cbef97de3b8376a38681e40 (diff) | |
download | ltask-a1f34001696c44139b668918ea52c1add0dde7ea.tar.gz |
fixed include system, updated some tasks
Diffstat (limited to 'tasks/jenkins')
-rw-r--r-- | tasks/jenkins | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/tasks/jenkins b/tasks/jenkins new file mode 100644 index 0000000..5598a9e --- /dev/null +++ b/tasks/jenkins @@ -0,0 +1,26 @@ +#!/bin/bash + +function task_exec() { + + cat id_jenkins.pub >> /home/server/.ssh/authorized_keys + +} + +function task_setup() { + # Available environment variables + # $ASSET_DIR + # $TOOL_DIR + + SSH_USER=server + SSH_IDENTITY_FILE=$ASSET_DIR/id_jenkins + + FILES+=("$ASSET_DIR/id_jenkins.pub") + + TASK_ISSET="yes" +} + +if [ -z $HOSTMODE ]; then + task_exec +else + task_setup +fi |