/usr/share/pyshared/cobbler/yumgen.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 | """
Builds out filesystem trees/data based on the object tree.
This is the code behind 'cobbler sync'.
Copyright 2006-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 shutil
import time
import sys
import glob
import traceback
import errno
import utils
from cexceptions import *
import templar
import item_distro
import item_profile
import item_repo
import item_system
from utils import _
class YumGen:
def __init__(self,config):
"""
Constructor
"""
self.config = config
self.api = config.api
self.distros = config.distros()
self.profiles = config.profiles()
self.systems = config.systems()
self.settings = config.settings()
self.repos = config.repos()
self.templar = templar.Templar(config)
def get_yum_config(self,obj,is_profile):
"""
Return one large yum repo config blob suitable for use by any target system that requests it.
"""
totalbuf = ""
blended = utils.blender(self.api, False, obj)
input_files = []
# chance old versions from upgrade do not have a source_repos
# workaround for user bug
if not blended.has_key("source_repos"):
blended["source_repos"] = []
# tack on all the install source repos IF there is more than one.
# this is basically to support things like RHEL5 split trees
# if there is only one, then there is no need to do this.
included = {}
for r in blended["source_repos"]:
filename = self.settings.webdir + "/" + "/".join(r[0].split("/")[4:])
if not included.has_key(filename):
input_files.append(filename)
included[filename] = 1
for repo in blended["repos"]:
path = os.path.join(self.settings.webdir, "repo_mirror", repo, "config.repo")
if not included.has_key(path):
input_files.append(path)
included[path] = 1
for infile in input_files:
if infile.find("ks_mirror") == -1:
dispname = infile.split("/")[-2]
else:
dispname = infile.split("/")[-1].replace(".repo","")
try:
infile_h = open(infile)
except:
# file does not exist and the user needs to run reposync
# before we will use this, cobbler check will mention
# this problem
totalbuf = totalbuf + "\n# error: could not read repo source: %s\n\n" % infile
continue
infile_data = infile_h.read()
infile_h.close()
outfile = None # disk output only
totalbuf = totalbuf + self.templar.render(infile_data, blended, outfile, None)
totalbuf = totalbuf + "\n\n"
return totalbuf
|