diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2020-07-27 20:47:52 +0200 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2020-07-27 20:47:52 +0200 |
commit | 0c79996398479f184b890c30e998e6cc4cce1f65 (patch) | |
tree | 09c5df91d57314eb54eaccff8fc319a55e87beaa /tasks/reboot | |
parent | ce2f74f9da8a2289bdec2b52b36ea220602f7ccf (diff) | |
download | ltask-0c79996398479f184b890c30e998e6cc4cce1f65.tar.gz |
moved tasks to seperate repo, support for external workdir
Diffstat (limited to 'tasks/reboot')
-rw-r--r-- | tasks/reboot | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/tasks/reboot b/tasks/reboot deleted file mode 100644 index 83c04fd..0000000 --- a/tasks/reboot +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/bash - -function task_exec() { - wall "Going down for reboot now." - sudo reboot -} - -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 |