aboutsummaryrefslogtreecommitdiff
path: root/tasks/reboot
blob: 30275029724e0e251fda5c4bb8d41193a027ee4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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