aboutsummaryrefslogtreecommitdiff
path: root/tasks/apt-update
blob: 38693b319f0503bfc5995d835a481ae691dfa551 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/bash

function task_exec() {
	sudo apt-get -y update
	sudo apt-get -y upgrade
}

function task_setup() {
	# Available environment variables
	# $ASSET_DIR
	# $TOOL_DIR
	
	SSH_USER=server
	SSH_IDENTITY_FILE=$ASSET_DIR/id_rsa
	
	TASK_ISSET="yes"
}

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