18e735df1b
Using patches from git makes it clean which changes are included in Fedora New workflow: 1. clone https://github.com/fedora-selinux/selinux 2. create patchset $ git format-patch 20190315 -- policycoreutils python gui sandbox dbus semodule-utils restorecond 3. update spec file $ for j in [0-9]*.patch; do printf "Patch%s: %s\n" ${j/-*/} $j; done # deleted: restorecond-fedora.patch
27 lines
827 B
Diff
27 lines
827 B
Diff
From bfcb599d9424ef6ffcd250931c89675b451edd00 Mon Sep 17 00:00:00 2001
|
|
From: Miroslav Grepl <mgrepl@redhat.com>
|
|
Date: Fri, 20 Feb 2015 16:42:01 +0100
|
|
Subject: [PATCH] We want to remove the trailing newline for
|
|
/etc/system_release.
|
|
|
|
---
|
|
python/sepolicy/sepolicy/__init__.py | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/python/sepolicy/sepolicy/__init__.py b/python/sepolicy/sepolicy/__init__.py
|
|
index 88a2b8f6..0c66f4d5 100644
|
|
--- a/python/sepolicy/sepolicy/__init__.py
|
|
+++ b/python/sepolicy/sepolicy/__init__.py
|
|
@@ -1212,7 +1212,7 @@ def get_os_version():
|
|
system_release = ""
|
|
try:
|
|
with open('/etc/system-release') as f:
|
|
- system_release = f.readline()
|
|
+ system_release = f.readline().rstrip()
|
|
except IOError:
|
|
system_release = "Misc"
|
|
|
|
--
|
|
2.22.0
|
|
|