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
25 lines
638 B
Diff
25 lines
638 B
Diff
From 8af697659bd662517571577bf47946a2113f34a1 Mon Sep 17 00:00:00 2001
|
|
From: Dan Walsh <dwalsh@redhat.com>
|
|
Date: Fri, 14 Feb 2014 12:32:12 -0500
|
|
Subject: [PATCH] Don't be verbose if you are not on a tty
|
|
|
|
---
|
|
policycoreutils/scripts/fixfiles | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/policycoreutils/scripts/fixfiles b/policycoreutils/scripts/fixfiles
|
|
index b2779581..53d28c7b 100755
|
|
--- a/policycoreutils/scripts/fixfiles
|
|
+++ b/policycoreutils/scripts/fixfiles
|
|
@@ -108,6 +108,7 @@ exclude_dirs_from_relabelling() {
|
|
fullFlag=0
|
|
BOOTTIME=""
|
|
VERBOSE="-p"
|
|
+[ -t 1 ] || VERBOSE=""
|
|
FORCEFLAG=""
|
|
RPMFILES=""
|
|
PREFC=""
|
|
--
|
|
2.22.0
|
|
|