forked from dougsland/misc-ovirt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
engine_force_remove_Host.py
94 lines (74 loc) · 2.25 KB
/
engine_force_remove_Host.py
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#!/usr/bin/python
#
# Copyright (C) 2011
#
# Douglas Schilling Landgraf <[email protected]>
#
# This software is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation; either version 2.1 of the License, or
# (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
# USA
import psycopg2
import sys
DBPASS = "my_db_pass"
def removeHost(host):
try:
con = psycopg2.connect("dbname='engine' user='postgres' password='" + DBPASS + "'")
except:
print "aborting.. unable to connect to the database.. bad password?"
sys.exit(-1)
cursor = con.cursor()
cmd = "select vds_id from vds_static where vds_name='" + host + "'"
try:
cursor.execute(cmd)
except:
print "Cannot execute select into vds_static" %(host)
sys.exit(-1)
ret = cursor.fetchone()
if ret == None:
print "Cannot locate host %s" %(host)
sys.exit(-1)
vds_id = ret[0]
cmd = "delete from vds_statistics where vds_id='" + vds_id + "'"
try:
cursor.execute(cmd)
except:
print "Cannot remove entry from vds_statistics"
sys.exit(-1)
con.commit()
cmd = "delete from vds_dynamic where vds_id='" + vds_id + "'"
try:
cursor.execute(cmd)
except:
print "Cannot remove entry from vds_dynamic"
sys.exit(-1)
con.commit()
cmd = "delete from vds_static where vds_id='" + vds_id + "'"
try:
cursor.execute(cmd)
except:
print "Cannot remove entry from vds_static"
sys.exit(-1)
con.commit()
print "Done!"
if __name__ == "__main__":
if len(sys.argv) != 2:
print "%s HOST" % (sys.argv[0])
sys.exit(-1)
print "This is *NOT* supported operation"
ans = raw_input("Are you sure you want to continue? (yes/no) ")
if ans != "yes":
print "aborting..."
sys.exit(2)
print "Removing host %s..." % (sys.argv[1])
removeHost(sys.argv[1])