|
|
60475e |
From 99582e3bf63475b7af5793bb9230e88d847dc7c8 Mon Sep 17 00:00:00 2001
|
|
|
60475e |
From: Petr Lautrbach <plautrba@redhat.com>
|
|
|
60475e |
Date: Tue, 2 Jul 2019 17:11:32 +0200
|
|
|
c33c08 |
Subject: [PATCH] policycoreutils/fixfiles: Fix [-B] [-F] onboot
|
|
|
60475e |
|
|
|
60475e |
Commit 6e289bb7bf3d ("policycoreutils: fixfiles: remove bad modes of "relabel"
|
|
|
60475e |
command") added "$RESTORE_MODE" != DEFAULT test when onboot is used. It makes
|
|
|
60475e |
`fixfiles -B onboot` to show usage instead of updating /.autorelabel
|
|
|
60475e |
|
|
|
60475e |
The code is restructured to handle -B for different modes correctly.
|
|
|
60475e |
|
|
|
60475e |
Fixes:
|
|
|
60475e |
# fixfiles -B onboot
|
|
|
60475e |
Usage: /usr/sbin/fixfiles [-v] [-F] [-f] relabel
|
|
|
60475e |
...
|
|
|
60475e |
|
|
|
60475e |
Signed-off-by: Petr Lautrbach <plautrba@redhat.com>
|
|
|
60475e |
---
|
|
|
60475e |
policycoreutils/scripts/fixfiles | 29 +++++++++++++++--------------
|
|
|
60475e |
1 file changed, 15 insertions(+), 14 deletions(-)
|
|
|
60475e |
|
|
|
60475e |
diff --git a/policycoreutils/scripts/fixfiles b/policycoreutils/scripts/fixfiles
|
|
|
60475e |
index 53d28c7b..9dd44213 100755
|
|
|
60475e |
--- a/policycoreutils/scripts/fixfiles
|
|
|
60475e |
+++ b/policycoreutils/scripts/fixfiles
|
|
|
60475e |
@@ -112,7 +112,7 @@ VERBOSE="-p"
|
|
|
60475e |
FORCEFLAG=""
|
|
|
60475e |
RPMFILES=""
|
|
|
60475e |
PREFC=""
|
|
|
60475e |
-RESTORE_MODE="DEFAULT"
|
|
|
60475e |
+RESTORE_MODE=""
|
|
|
60475e |
SETFILES=/sbin/setfiles
|
|
|
60475e |
RESTORECON=/sbin/restorecon
|
|
|
60475e |
FILESYSTEMSRW=`get_rw_labeled_mounts`
|
|
|
60475e |
@@ -214,16 +214,17 @@ restore () {
|
|
|
60475e |
OPTION=$1
|
|
|
60475e |
shift
|
|
|
60475e |
|
|
|
60475e |
-case "$RESTORE_MODE" in
|
|
|
60475e |
- PREFC)
|
|
|
60475e |
- diff_filecontext $*
|
|
|
60475e |
- return
|
|
|
60475e |
- ;;
|
|
|
60475e |
- BOOTTIME)
|
|
|
60475e |
+# [-B | -N time ]
|
|
|
60475e |
+if [ -z "$BOOTTIME" ]; then
|
|
|
60475e |
newer $BOOTTIME $*
|
|
|
60475e |
return
|
|
|
60475e |
- ;;
|
|
|
60475e |
-esac
|
|
|
60475e |
+fi
|
|
|
60475e |
+
|
|
|
60475e |
+# -C PREVIOUS_FILECONTEXT
|
|
|
60475e |
+if [ "$RESTORE_MODE" == PREFC ]; then
|
|
|
60475e |
+ diff_filecontext $*
|
|
|
60475e |
+ return
|
|
|
60475e |
+fi
|
|
|
60475e |
|
|
|
60475e |
[ -x /usr/sbin/genhomedircon ] && /usr/sbin/genhomedircon
|
|
|
60475e |
|
|
|
60475e |
@@ -239,7 +240,7 @@ case "$RESTORE_MODE" in
|
|
|
60475e |
FILEPATH)
|
|
|
60475e |
${RESTORECON} ${VERBOSE} ${EXCLUDEDIRS} ${FORCEFLAG} $* -R -- "$FILEPATH"
|
|
|
60475e |
;;
|
|
|
60475e |
- DEFAULT)
|
|
|
60475e |
+ *)
|
|
|
60475e |
if [ -n "${FILESYSTEMSRW}" ]; then
|
|
|
60475e |
LogReadOnly
|
|
|
60475e |
echo "${OPTION}ing `echo ${FILESYSTEMSRW}`"
|
|
|
60475e |
@@ -272,7 +273,7 @@ fullrelabel() {
|
|
|
60475e |
|
|
|
60475e |
|
|
|
60475e |
relabel() {
|
|
|
60475e |
- if [ "$RESTORE_MODE" != DEFAULT ]; then
|
|
|
60475e |
+ if [ -n "$RESTORE_MODE" -a "$RESTORE_MODE" != DEFAULT ]; then
|
|
|
60475e |
usage
|
|
|
60475e |
exit 1
|
|
|
60475e |
fi
|
|
|
60475e |
@@ -306,7 +307,7 @@ case "$1" in
|
|
|
60475e |
verify) restore Verify -n;;
|
|
|
60475e |
relabel) relabel;;
|
|
|
60475e |
onboot)
|
|
|
60475e |
- if [ "$RESTORE_MODE" != DEFAULT ]; then
|
|
|
60475e |
+ if [ -n "$RESTORE_MODE" -a "$RESTORE_MODE" != DEFAULT ]; then
|
|
|
60475e |
usage
|
|
|
60475e |
exit 1
|
|
|
60475e |
fi
|
|
|
60475e |
@@ -344,7 +345,7 @@ if [ $# -eq 0 ]; then
|
|
|
60475e |
fi
|
|
|
60475e |
|
|
|
60475e |
set_restore_mode() {
|
|
|
60475e |
- if [ "$RESTORE_MODE" != DEFAULT ]; then
|
|
|
60475e |
+ if [ -n "$RESTORE_MODE" ]; then
|
|
|
60475e |
# can't specify two different modes
|
|
|
60475e |
usage
|
|
|
60475e |
exit 1
|
|
|
60475e |
@@ -357,7 +358,7 @@ while getopts "N:BC:FfR:l:v" i; do
|
|
|
60475e |
case "$i" in
|
|
|
60475e |
B)
|
|
|
60475e |
BOOTTIME=`/bin/who -b | awk '{print $3}'`
|
|
|
60475e |
- set_restore_mode BOOTTIME
|
|
|
60475e |
+ set_restore_mode DEFAULT
|
|
|
60475e |
;;
|
|
|
60475e |
N)
|
|
|
60475e |
BOOTTIME=$OPTARG
|
|
|
60475e |
--
|
|
|
c33c08 |
2.21.0
|
|
|
60475e |
|