<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40">

<head>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=us-ascii">
<meta name=Generator content="Microsoft Word 12 (filtered medium)">
<style>
<!--
 /* Font Definitions */
 @font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
        {font-family:Tahoma;
        panose-1:2 11 6 4 3 5 4 4 2 4;}
 /* Style Definitions */
 p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0in;
        margin-bottom:.0001pt;
        font-size:11.0pt;
        font-family:"Calibri","sans-serif";}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
p.MsoListParagraph, li.MsoListParagraph, div.MsoListParagraph
        {mso-style-priority:34;
        margin-top:0in;
        margin-right:0in;
        margin-bottom:0in;
        margin-left:.5in;
        margin-bottom:.0001pt;
        font-size:11.0pt;
        font-family:"Calibri","sans-serif";}
span.EmailStyle18
        {mso-style-type:personal;
        font-family:"Calibri","sans-serif";
        color:windowtext;}
span.EmailStyle19
        {mso-style-type:personal-reply;
        font-family:"Calibri","sans-serif";
        color:#1F497D;}
.MsoChpDefault
        {mso-style-type:export-only;
        font-size:10.0pt;}
@page Section1
        {size:8.5in 11.0in;
        margin:1.0in 1.0in 1.0in 1.0in;}
div.Section1
        {page:Section1;}
-->
</style>
<!--[if gte mso 9]><xml>
 <o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
 <o:shapelayout v:ext="edit">
  <o:idmap v:ext="edit" data="1" />
 </o:shapelayout></xml><![endif]-->
</head>

<body lang=EN-US link=blue vlink=purple>

<div class=Section1>

<p class=MsoNormal><span style='color:#1F497D'>So the fix below is a solution
to the first step of the problem.<o:p></o:p></span></p>

<p class=MsoNormal><span style='color:#1F497D'><o:p> </o:p></span></p>

<p class=MsoNormal><span style='color:#1F497D'>Turns out, policygentool
actually does need  polgen and not sepolgen.  And polgen is in no RPM’s I could
find in the CentOS 5 repos.<o:p></o:p></span></p>

<p class=MsoNormal><span style='color:#1F497D'><o:p> </o:p></span></p>

<p class=MsoNormal><span style='color:#1F497D'>How I fixed this was replace the
CentOS 5 file with the Fedora 8 policygentool file.  The Fedora 8 version
actually does not import polgen or sepolgen: it only uses standard Python
libraries.<o:p></o:p></span></p>

<p class=MsoNormal><span style='color:#1F497D'><o:p> </o:p></span></p>

<div>

<div style='border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0in 0in 0in'>

<p class=MsoNormal><b><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'>From:</span></b><span
style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'>
centos-bounces@centos.org [mailto:centos-bounces@centos.org] <b>On Behalf Of </b>Winslett,
Chris<br>
<b>Sent:</b> Thursday, April 17, 2008 12:41 PM<br>
<b>To:</b> centos@centos.org<br>
<b>Subject:</b> [CentOS] policygentool in selinux-policy-devel-2.4.6-106<o:p></o:p></span></p>

</div>

</div>

<p class=MsoNormal><o:p> </o:p></p>

<p class=MsoNormal>I just installed a fresh copy of Centos 5.1, yum upgraded
all, and the following error occurred with selinux-policy-devel-2.4.6-106.el5_1.3
rpm.<o:p></o:p></p>

<p class=MsoNormal><o:p> </o:p></p>

<p class=MsoNormal>When I was trying to run policygentool, I was getting the
following error:<o:p></o:p></p>

<p class=MsoNormal><o:p> </o:p></p>

<p class=MsoNormal><span style='font-family:"Courier New"'>    
Traceback (most recent call last):<o:p></o:p></span></p>

<p class=MsoNormal><span style='font-family:"Courier New"'>    
   File “/usr/share/selinux/devel/policygentool”, line 25, in ?<o:p></o:p></span></p>

<p class=MsoNormal><span style='font-family:"Courier New"'>    
     Import polgen<o:p></o:p></span></p>

<p class=MsoNormal><span style='font-family:"Courier New"'><o:p> </o:p></span></p>

<p class=MsoNormal style='text-indent:.5in'><span style='font-family:"Courier New"'>ImportError:
No module named polgen<o:p></o:p></span></p>

<p class=MsoNormal><span style='font-family:"Courier New"'><o:p> </o:p></span></p>

<p class=MsoNormal>Turns out, online 25 the following diff should be made:<o:p></o:p></p>

<p class=MsoNormal><o:p> </o:p></p>

<p class=MsoNormal style='text-indent:.5in'><span style='font-family:"Courier New"'>-
import polgen<o:p></o:p></span></p>

<p class=MsoNormal style='text-indent:.5in'><span style='font-family:"Courier New"'>+
import sepolgen<o:p></o:p></span></p>

<p class=MsoNormal><o:p> </o:p></p>

<p class=MsoNormal>I assume the Python module changed names.<o:p></o:p></p>

<p class=MsoNormal><o:p> </o:p></p>

<p class=MsoNormal>I uninstalled the RPM and reinstalled it to ensure I was getting
the same error, and I did.<o:p></o:p></p>

<p class=MsoNormal><o:p> </o:p></p>

<p class=MsoNormal>Christopher Winslett<o:p></o:p></p>

<p class=MsoNormal>Harbert Management Corporation<o:p></o:p></p>

</div>

</body>

</html>