/usr/share/pyshared/cobbler/action_status.py is in python-cobbler 2.2.2-0ubuntu33.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 | """
Reports on kickstart activity by examining the logs in
/var/log/cobbler.
Copyright 2007-2009, Red Hat, Inc
Michael DeHaan <mdehaan@redhat.com>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA
"""
import os
import os.path
import glob
import time
import api as cobbler_api
import clogger
import utils
#from utils import _
# ARRAY INDEXES
MOST_RECENT_START = 0
MOST_RECENT_STOP = 1
MOST_RECENT_TARGET = 2
SEEN_START = 3
SEEN_STOP = 4
STATE = 5
class BootStatusReport:
def __init__(self,config,mode,logger=None):
"""
Constructor
"""
self.config = config
self.settings = config.settings()
self.ip_data = {}
self.mode = mode
if logger is None:
logger = clogger.Logger()
self.logger = logger
# -------------------------------------------------------
def scan_logfiles(self):
#profile foosball ? 127.0.0.1 start 1208294043.58
#system neo ? 127.0.0.1 start 1208295122.86
files = glob.glob("/var/log/cobbler/install.log*")
for fname in files:
fd = open(fname)
data = fd.read()
for line in data.split("\n"):
tokens = line.split()
if len(tokens) == 0:
continue
(profile_or_system, name, ip, start_or_stop, ts) = tokens
self.catalog(profile_or_system,name,ip,start_or_stop,ts)
fd.close()
# ------------------------------------------------------
def catalog(self,profile_or_system,name,ip,start_or_stop,ts):
ip_data = self.ip_data
if not ip_data.has_key(ip):
ip_data[ip] = [ -1, -1, "?", 0, 0, "?" ]
elem = ip_data[ip]
ts = float(ts)
mrstart = elem[MOST_RECENT_START]
mrstop = elem[MOST_RECENT_STOP]
mrtarg = elem[MOST_RECENT_TARGET]
snstart = elem[SEEN_START]
snstop = elem[SEEN_STOP]
if start_or_stop == "start":
if mrstart < ts:
mrstart = ts
mrtarg = "%s:%s" % (profile_or_system, name)
elem[SEEN_START] = elem[SEEN_START] + 1
if start_or_stop == "stop":
if mrstop < ts:
mrstop = ts
mrtarg = "%s:%s" % (profile_or_system, name)
elem[SEEN_STOP] = elem[SEEN_STOP] + 1
elem[MOST_RECENT_START] = mrstart
elem[MOST_RECENT_STOP] = mrstop
elem[MOST_RECENT_TARGET] = mrtarg
# -------------------------------------------------------
def process_results(self):
# FIXME: this should update the times here
tnow = int(time.time())
for ip in self.ip_data.keys():
elem = self.ip_data[ip]
start = int(elem[MOST_RECENT_START])
stop = int(elem[MOST_RECENT_STOP])
if (stop > start):
elem[STATE] = "finished"
else:
delta = tnow - start
min = delta / 60
sec = delta % 60
if min > 100:
elem[STATE] = "unknown/stalled"
else:
elem[STATE] = "installing (%sm %ss)" % (min,sec)
return self.ip_data
def get_printable_results(self):
format = "%-15s|%-20s|%-17s|%-17s"
ip_data = self.ip_data
ips = ip_data.keys()
ips.sort()
line = (
"ip",
"target",
"start",
"state",
)
buf = format % line
for ip in ips:
elem = ip_data[ip]
line = (
ip,
elem[MOST_RECENT_TARGET],
time.ctime(elem[MOST_RECENT_START]),
elem[STATE]
)
buf = buf + "\n" + format % line
return buf
# -------------------------------------------------------
def run(self):
"""
Calculate and print a kickstart-status report.
"""
self.scan_logfiles()
results = self.process_results()
if self.mode == "text":
return self.get_printable_results()
else:
return results
|