-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathreboot
76 lines (54 loc) · 1.74 KB
/
reboot
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#!/bin/bash
# Simple bash-script to reboot your Clodo's VPS from console.
# Writen by Vil Surkin <vills@clodo.ru>, 2011
CL_VERSION="0.2"
. /etc/clodo-utils/apilogin.conf
# some functions for colorized output
function print_error() {
echo -e "\033[01;31mERROR!\033[01;00m"
echo -e "\033[01;31m${1}\033[01;00m"
exit
}
function print_good() {
echo -e "\033[01;32m${1}\033[01;00m"
}
# see the function's name and you'll understand all ;-)
function auth() {
if (( $SERVER_NUM > 10000 )); then
API_LINK="http://api.kh.clodo.ru"
else
API_LINK="http://api.clodo.ru"
fi
AUTH_DATA="$(curl -I -s -H "X-Auth-User: ${CLODO_USER}" -H "X-Auth-Key: ${CLODO_KEY}" $API_LINK)"
ERR=`echo "$AUTH_DATA" | grep 'Unauthorized'`
if [ $? -eq 0 ]; then
print_error "Can't get authorization! Check config /etc/clodo-reboot.conf"
fi
API_URL=`echo "$AUTH_DATA" | grep 'X-Server-Management-Url' | sed 's/X-Server-Management-Url: \(.*\)\r/\1/'`
if [ -z "$API_URL" ]; then
print_error "Can't get API URL"
fi
API_TOKEN=`echo "$AUTH_DATA" | grep 'X-Auth-Token' | sed 's/X-Auth-Token: \(\w*\)\r/\1/'`
if [ -z "$API_TOKEN" ]; then
print_error "Can't get API TOKEN"
fi
return 0
}
if [ $1 ]; then
print_good "EMULATION MODE!!"; echo
fi
# ===================================
auth
if [ ! $1 ]; then
REBOOT_REQ="$(curl -I -s -H "X-Auth-Token: ${API_TOKEN}" $API_URL/servers/${SERVER_NUM}/reboot)"
ERR=`echo "$REBOOT_REQ" | grep 'Method Not Allowed'`
if [ $? -eq 0 ]; then
print_error "Actions for this server is temporary disabled"
fi
ERR=`echo "$REBOOT_REQ" | grep 'Bad Request'`
if [ $? -eq 0 ]; then
print_error "Ohh... Smthing goes to hell. Please, contact our technical support."
fi
fi
print_good "Now server will reboot..."
# thanx!