Additional patch from Miroslav to handle role attributes
This commit is contained in:
parent
422fcbbd1a
commit
06ab21ffa7
@ -13,7 +13,7 @@ index 73c60f6..d636091 100644
|
|||||||
output = subprocess.Popen(["/sbin/ausearch", "-m", "AVC,USER_AVC,MAC_POLICY_LOAD,DAEMON_START,SELINUX_ERR", "-ts", bootdate, boottime],
|
output = subprocess.Popen(["/sbin/ausearch", "-m", "AVC,USER_AVC,MAC_POLICY_LOAD,DAEMON_START,SELINUX_ERR", "-ts", bootdate, boottime],
|
||||||
stdout=subprocess.PIPE).communicate()[0]
|
stdout=subprocess.PIPE).communicate()[0]
|
||||||
diff --git a/sepolgen/src/sepolgen/refparser.py b/sepolgen/src/sepolgen/refparser.py
|
diff --git a/sepolgen/src/sepolgen/refparser.py b/sepolgen/src/sepolgen/refparser.py
|
||||||
index a4adbd8..6a3019c 100644
|
index a4adbd8..7b76261 100644
|
||||||
--- a/sepolgen/src/sepolgen/refparser.py
|
--- a/sepolgen/src/sepolgen/refparser.py
|
||||||
+++ b/sepolgen/src/sepolgen/refparser.py
|
+++ b/sepolgen/src/sepolgen/refparser.py
|
||||||
@@ -91,8 +91,10 @@ tokens = (
|
@@ -91,8 +91,10 @@ tokens = (
|
||||||
@ -79,7 +79,7 @@ index a4adbd8..6a3019c 100644
|
|||||||
p[0] = t
|
p[0] = t
|
||||||
|
|
||||||
+def p_roleattribute_def(p):
|
+def p_roleattribute_def(p):
|
||||||
+ '''typeattribute_def : ROLEATTRIBUTE IDENTIFIER comma_list SEMI'''
|
+ '''roleattribute_def : ROLEATTRIBUTE IDENTIFIER comma_list SEMI'''
|
||||||
+ t = refpolicy.RoleAttribute()
|
+ t = refpolicy.RoleAttribute()
|
||||||
+ t.role = p[2]
|
+ t.role = p[2]
|
||||||
+ t.roleattributes.update(p[3])
|
+ t.roleattributes.update(p[3])
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
Summary: SELinux policy core utilities
|
Summary: SELinux policy core utilities
|
||||||
Name: policycoreutils
|
Name: policycoreutils
|
||||||
Version: 2.1.13
|
Version: 2.1.13
|
||||||
Release: 53%{?dist}
|
Release: 54%{?dist}
|
||||||
License: GPLv2
|
License: GPLv2
|
||||||
Group: System Environment/Base
|
Group: System Environment/Base
|
||||||
# Based on git repository with tag 20101221
|
# Based on git repository with tag 20101221
|
||||||
@ -338,6 +338,9 @@ The policycoreutils-restorecond package contains the restorecond service.
|
|||||||
%{_bindir}/systemctl try-restart restorecond.service >/dev/null 2>&1 || :
|
%{_bindir}/systemctl try-restart restorecond.service >/dev/null 2>&1 || :
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Jan 9 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.12-54
|
||||||
|
- Additional patch from Miroslav to handle role attributes
|
||||||
|
|
||||||
* Wed Jan 9 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.12-53
|
* Wed Jan 9 2013 Dan Walsh <dwalsh@redhat.com> - 2.1.12-53
|
||||||
- Update with Miroslav patch to handle role attributes
|
- Update with Miroslav patch to handle role attributes
|
||||||
- Update Translations
|
- Update Translations
|
||||||
|
Loading…
Reference in New Issue
Block a user