diff options
Diffstat (limited to 'tasks/apt-update')
-rw-r--r-- | tasks/apt-update | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/tasks/apt-update b/tasks/apt-update deleted file mode 100644 index 38693b3..0000000 --- a/tasks/apt-update +++ /dev/null @@ -1,23 +0,0 @@ -#!/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 |