aboutsummaryrefslogtreecommitdiff
path: root/tasks/system-update
blob: 865014c2eb64f8fd95bc6ea06f80bebe08b70f93 (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
33
#!/bin/bash

function task_exec() {
	ret=0
	sudo pkg_update
	ret=$(($ret + $?))

	sudo pkg_upgrade
	ret=$(($ret + $?))
	
	exit $ret
}

function task_setup() {
	# Available environment variables
	# $ASSET_DIR
	# $TOOL_DIR
	
	INCLUDES+=("$INCLUDE_DIR/pkgmanager")

	SSH_USER=server
	SSH_IDENTITY_FILE=$ASSET_DIR/id_jenkins

	PARALLEL="yes"

	TASK_ISSET="yes"
}

if [ -z $HOSTMODE ]; then
	task_exec
else
	task_setup
fi