0ce93abfc4
- Use SHA-2 instead of SHA-1 (#1934964) Resolves: rhbz#1977191 - Fix COPY_PASTE_ERROR (CWE-398) Resolves: rhbz#1938843
25 lines
646 B
Diff
25 lines
646 B
Diff
From fb7fb754e2c4d8931a5834e34ef88dfaf764bb8f 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 6fb12e0451a9..cb20002ab613 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.32.0
|
|
|