blob: 8974aee8fc62a5db8d9d6d47556b9df1fd42347f (
plain)
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
27
28
29
30
31
32
|
#!/bin/bash
function task_exec() {
whoami
hostname
uptime 1>&2
}
function task_setup() {
# Available environment variables
# $ASSET_DIR
# $TOOL_DIR
# $INCLUDE_DIR
# Available Configuration
# $PARALLEL "yes"/"no"
INCLUDES+=()
SSH_USER=server
SSH_IDENTITY_FILE=$ASSET_DIR/id_rsa
FILES+=()
TASK_ISSET="yes"
}
if [ -z $HOSTMODE ]; then
task_exec
else
task_setup
fi
|