forked from pool/selinux-policy
e10fb17535
- Added module for wicked - New patches: * fix_authlogin.patch * fix_screen.patch * fix_unprivuser.patch * fix_rpm.patch * fix_apache.patch - Added module for rtorrent - Enable snapper module in minimum policy to reduce issues on BTRFS Updated fix_snapper.patch to prevent relabling of snapshot OBS-URL: https://build.opensuse.org/request/show/810877 OBS-URL: https://build.opensuse.org/package/show/security:SELinux/selinux-policy?expand=0&rev=76
23 lines
704 B
Diff
23 lines
704 B
Diff
Index: fedora-policy/support/sedoctool.py
|
|
===================================================================
|
|
--- fedora-policy.orig/support/sedoctool.py
|
|
+++ fedora-policy/support/sedoctool.py
|
|
@@ -810,7 +810,7 @@ if booleans:
|
|
namevalue_list = []
|
|
if os.path.exists(booleans):
|
|
try:
|
|
- conf = open(booleans, 'r')
|
|
+ conf = open(booleans, 'r', errors='replace')
|
|
except:
|
|
error("Could not open booleans file for reading")
|
|
|
|
@@ -831,7 +831,7 @@ if modules:
|
|
namevalue_list = []
|
|
if os.path.exists(modules):
|
|
try:
|
|
- conf = open(modules, 'r')
|
|
+ conf = open(modules, 'r', errors='replace')
|
|
except:
|
|
error("Could not open modules file for reading")
|
|
namevalue_list = get_conf(conf)
|