policycoreutils: fixfiles: tell restorecon to ignore missing paths

Restorecon should default to ignore missing files.

Signed-off-by: Eric Paris <eparis@redhat.com>
Acked-by: Dan Walsh <dwalsh@redhat.com>
This commit is contained in:
Dan Walsh 2012-05-29 09:30:04 -04:00 committed by Eric Paris
parent f6595e357f
commit cef1d08d1e
1 changed files with 1 additions and 1 deletions

View File

@ -176,7 +176,7 @@ if [ -f ${PREFC} -a -x /usr/bin/diff ]; then
esac; \
fi; \
done | \
${RESTORECON} -f - -R -p `exclude_dirs`; \
${RESTORECON} -i -f - -R -p `exclude_dirs`; \
rm -f ${TEMPFILE} ${PREFCTEMPFILE}
fi
}