-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 This patch looks good to me. acked. Fixfiles restore is called by auditrelabel, and was happening early in the boot process, before the syslog system was up and running. A bug in systemd was causing relabels to take forever, while it waited for the syslog's to complete. This was fixed, but I still see no reason to write thousands/millions of lines to syslog on a badly mislabled machine and wanted this featured turned off. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.12 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iEYEARECAAYFAk9x23QACgkQrlYvE4MpobPeRACcCIiLS39ofYOpGkVIFGNVCd8w QMEAn2s7OKGHzTfwHXeBdvmCVvbvvonN =J6K0 -----END PGP SIGNATURE-----
>From b503667196e6cf510c471ac8e002d8d16816d031 Mon Sep 17 00:00:00 2001 From: Dan Walsh <dwalsh@xxxxxxxxxx> Date: Mon, 30 Jan 2012 16:21:24 -0500 Subject: [PATCH 37/73] policycoreutils: scripts: Don't syslog setfiles changes on a fixfiles restore FIXME [changelog WTF does this mean?] NOT-Signed-off-by: Eric Paris <eparis@xxxxxxxxxx> --- policycoreutils/scripts/fixfiles | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/policycoreutils/scripts/fixfiles b/policycoreutils/scripts/fixfiles index 27dcccf..445353e 100755 --- a/policycoreutils/scripts/fixfiles +++ b/policycoreutils/scripts/fixfiles @@ -121,7 +121,6 @@ LOGFILE=`tty` if [ $? != 0 ]; then LOGFILE="/dev/null" fi -SYSLOGFLAG="-l" LOGGER=/usr/sbin/logger SETFILES=/sbin/setfiles RESTORECON=/sbin/restorecon @@ -234,7 +233,7 @@ then done FC=$TEMPFCFILE fi -${SETFILES} -q ${SYSLOGFLAG} ${FORCEFLAG} $* ${FC} ${FILESYSTEMSRW} 2>&1 | cat >> $LOGFILE +${SETFILES} -q ${FORCEFLAG} $* ${FC} ${FILESYSTEMSRW} 2>&1 | cat >> $LOGFILE rm -rf /tmp/gconfd-* /tmp/pulse-* /tmp/orbit-* $TEMPFCFILE UNDEFINED=`get_undefined_type` || exit $? -- 1.7.9.3