aboutsummaryrefslogtreecommitdiff
path: root/tasks/reboot
blob: 83c04fda56f9886536214e865941b0dd8372c8bf (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