Bug 431413
Summary: | [regression] policygentool is broken | ||
---|---|---|---|
Product: | Red Hat Enterprise Linux 5 | Reporter: | Andreas Thienemann <athienem> |
Component: | selinux-policy | Assignee: | Daniel Walsh <dwalsh> |
Status: | CLOSED ERRATA | QA Contact: | |
Severity: | medium | Docs Contact: | |
Priority: | low | ||
Version: | 5.1 | Keywords: | Regression |
Target Milestone: | rc | ||
Target Release: | --- | ||
Hardware: | All | ||
OS: | Linux | ||
Whiteboard: | |||
Fixed In Version: | RHBA-2008-0465 | Doc Type: | Bug Fix |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2008-05-21 16:06:51 UTC | Type: | --- |
Regression: | --- | Mount Type: | --- |
Documentation: | --- | CRM: | |
Verified Versions: | Category: | --- | |
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
Cloudforms Team: | --- | Target Upstream Version: | |
Embargoed: |
Description
Andreas Thienemann
2008-02-04 11:06:14 UTC
A short patch fixing the initial problems: --- policygentool.orig 2008-02-04 12:14:18.000000000 +0100 +++ policygentool 2008-02-04 12:21:13.000000000 +0100 @@ -21,8 +21,10 @@ # # import os, sys, getopt +sys.path.append('/usr/share/system-config-selinux/'); import re import polgen +import polgengui def errorExit(error): sys.stderr.write("%s: " % sys.argv[0]) sys.stderr.write("%s\n" % error) @@ -73,8 +75,8 @@ 4 User Application """ input = sys.stdin.readline().rstrip() - if input > "0" and input < 5: - type = int(type) + if input > "0" and input < "5": + type = int(input) break print 'If the module uses pidfiles, what is the pidfile called?' It's not enough though, the script fails with the gen_policy call. Traceback (most recent call last): File "./policygentool", line 111, in ? gen_policy( NameError: name 'gen_policy' is not defined If you just remove the polgen line, does it work? Reverting back to previous version selinux-policy-2.4.6-119 This request was evaluated by Red Hat Product Management for inclusion in a Red Hat Enterprise Linux maintenance release. Product Management has requested further review of this request by Red Hat Engineering, for potential inclusion in a Red Hat Enterprise Linux Update release for currently deployed products. This request is not yet committed for inclusion in an Update release. This bugzilla has Keywords: Regression. Since no regressions are allowed between releases, it is also being proposed as a blocker for this release. Please resolve ASAP. An advisory has been issued which should help the problem described in this bug report. This report is therefore being closed with a resolution of ERRATA. For more information on the solution and/or where to find the updated files, please follow the link below. You may reopen this bug report if the solution does not work for you. http://rhn.redhat.com/errata/RHBA-2008-0465.html |