From b07a88ed2d9e42ca49f97b3052ff13aa6e1c35c6 Mon Sep 17 00:00:00 2001 From: Jonas Gunz Date: Thu, 28 May 2020 21:08:24 +0200 Subject: added tasks --- tasks/apt-update | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 tasks/apt-update (limited to 'tasks/apt-update') diff --git a/tasks/apt-update b/tasks/apt-update new file mode 100644 index 0000000..38693b3 --- /dev/null +++ b/tasks/apt-update @@ -0,0 +1,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 -- cgit v1.2.3