aboutsummaryrefslogtreecommitdiff
path: root/tasks/system-update
diff options
context:
space:
mode:
authorGravatar Jonas Gunz <himself@jonasgunz.de> 2020-07-27 20:47:52 +0200
committerGravatar Jonas Gunz <himself@jonasgunz.de> 2020-07-27 20:47:52 +0200
commit0c79996398479f184b890c30e998e6cc4cce1f65 (patch)
tree09c5df91d57314eb54eaccff8fc319a55e87beaa /tasks/system-update
parentce2f74f9da8a2289bdec2b52b36ea220602f7ccf (diff)
downloadltask-0c79996398479f184b890c30e998e6cc4cce1f65.tar.gz
moved tasks to seperate repo, support for external workdir
Diffstat (limited to 'tasks/system-update')
-rw-r--r--tasks/system-update33
1 files changed, 0 insertions, 33 deletions
diff --git a/tasks/system-update b/tasks/system-update
deleted file mode 100644
index 8a8c55d..0000000
--- a/tasks/system-update
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/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