Richard Marian Thomaiyar | 14fddef | 2018-07-13 23:55:56 +0530 | [diff] [blame] | 1 | From 24dbeec135ff83f2fd35ef12fe9842f02d6fd337 Mon Sep 17 00:00:00 2001 |
| 2 | From: Andrei Dinu <andrei.adrianx.dinu@intel.com> |
| 3 | Date: Thu, 20 Jun 2013 15:14:55 +0300 |
| 4 | Subject: [PATCH] changed log folder for check-setuid |
| 5 | |
| 6 | check-setuid was creating logs in /var/log directory, |
| 7 | which cannot be created persistently. To avoid errors |
| 8 | the log folder was changed to /etc/checksecurity/. |
| 9 | |
| 10 | Signed-off-by: Andrei Dinu <andrei.adrianx.dinu@intel.com> |
| 11 | --- |
| 12 | etc/check-setuid.conf | 2 +- |
| 13 | plugins/check-setuid | 6 +++--- |
| 14 | 2 files changed, 4 insertions(+), 4 deletions(-) |
| 15 | |
| 16 | diff --git a/etc/check-setuid.conf b/etc/check-setuid.conf |
| 17 | index 621336f..e1532c0 100644 |
| 18 | --- a/etc/check-setuid.conf |
| 19 | +++ b/etc/check-setuid.conf |
| 20 | @@ -116,4 +116,4 @@ CHECKSECURITY_PATHFILTER="-false" |
| 21 | # |
| 22 | # Location of setuid file databases. |
| 23 | # |
| 24 | -LOGDIR=/var/log/setuid |
| 25 | +LOGDIR=/etc/checksecurity/ |
| 26 | diff --git a/plugins/check-setuid b/plugins/check-setuid |
| 27 | index 8d6f90b..bdb21c1 100755 |
| 28 | --- a/plugins/check-setuid |
| 29 | +++ b/plugins/check-setuid |
| 30 | @@ -44,8 +44,8 @@ if [ `/usr/bin/id -u` != 0 ] ; then |
| 31 | exit 1 |
| 32 | fi |
| 33 | |
| 34 | -TMPSETUID=${LOGDIR:=/var/log/setuid}/setuid.new.tmp |
| 35 | -TMPDIFF=${LOGDIR:=/var/log/setuid}/setuid.diff.tmp |
| 36 | +TMPSETUID=${LOGDIR:=/etc/checksecurity/}/setuid.new.tmp |
| 37 | +TMPDIFF=${LOGDIR:=/etc/checksecurity/}/setuid.diff.tmp |
| 38 | |
| 39 | # |
| 40 | # Check for NFS/AFS mounts that are not nosuid/nodev |
| 41 | @@ -75,7 +75,7 @@ if [ "$CHECKSECURITY_NOFINDERRORS" = "TRUE" ] ; then |
| 42 | fi |
| 43 | |
| 44 | # Guard against undefined vars |
| 45 | -[ -z "$LOGDIR" ] && LOGDIR=/var/log/setuid |
| 46 | +[ -z "$LOGDIR" ] && LOGDIR=/etc/checksecurity/ |
| 47 | if [ ! -e "$LOGDIR" ] ; then |
| 48 | echo "ERROR: Log directory $LOGDIR does not exist" |
| 49 | exit 1 |
| 50 | -- |
| 51 | 1.7.9.5 |
| 52 | |