/usr/share/rhn/up2date_client/clientCaps.py is in rhn-client-tools 1.8.26-4.
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 | # a dict with "capability name" as the key, and the version
# as the value.
import UserDict
import glob
import os
import string
from capabilities import parseCap
class ClientCapabilities(UserDict.UserDict):
def __init__(self):
UserDict.UserDict.__init__(self)
self.populate()
def populate(self, capsToPopulate=None):
# FIXME: at some point, this will be
# intelligently populated...
localcaps = {
"caneatCheese":{'version':1, 'value': 1}
}
if capsToPopulate:
localcaps = capsToPopulate
self.data = localcaps
def headerFormat(self):
headerList = []
for key in self.data.keys():
headerName = "X-RHN-Client-Capability"
value = "%s(%s)=%s" % (key,
self.data[key]['version'],
self.data[key]['value'])
headerList.append((headerName, value))
return headerList
caps = ClientCapabilities()
def loadLocalCaps(capsDir = "/etc/sysconfig/rhn/clientCaps.d"):
capsFiles = glob.glob("%s/*" % capsDir)
for capsFile in capsFiles:
if os.path.isdir(capsFile):
continue
if not os.access(capsFile, os.R_OK):
continue
fd = open(capsFile, "r")
for line in fd.readlines():
string.strip(line)
if line[0] == "#":
continue
caplist = parseCap(line)
for (cap,data) in caplist:
caps.data[cap] = data
# print caps.data
loadLocalCaps()
# register local caps we require.
def registerCap(cap, data):
caps.data[cap] = data
# figure out something pretty here
registerCap("packages.runTransaction", {'version':'1', 'value':'1'})
registerCap("packages.rollBack", {'version':'1', 'value':'1'})
registerCap("packages.verify", {'version':'1', 'value':'1'})
registerCap("packages.extended_profile", {'version':'2', 'value':'1'})
registerCap("reboot.reboot", {'version':'1', 'value':'1'})
registerCap("packages.update", {'version':'2', 'value':'2'})
|