diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2020-05-28 21:08:24 +0200 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2020-05-28 21:08:24 +0200 |
commit | b07a88ed2d9e42ca49f97b3052ff13aa6e1c35c6 (patch) | |
tree | e1af9e0117302806f4f286b4931994a11f9f4e16 /tasks/reboot | |
parent | 5bd29e9fb8a015f25ab57801b5acb04c964b5720 (diff) | |
download | ltask-b07a88ed2d9e42ca49f97b3052ff13aa6e1c35c6.tar.gz |
added tasks
Diffstat (limited to 'tasks/reboot')
-rw-r--r-- | tasks/reboot | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/tasks/reboot b/tasks/reboot new file mode 100644 index 0000000..3027502 --- /dev/null +++ b/tasks/reboot @@ -0,0 +1,23 @@ +#!/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 |