aboutsummaryrefslogtreecommitdiff
path: root/tasks/example
blob: deb3c945015f85c2cc2d98c318b22842ba809097 (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 "true"/"false"

	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