diff options
author | Armin Kuster <akuster808@gmail.com> | 2022-05-03 14:31:21 -0700 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2022-05-14 10:51:32 -0700 |
commit | a764533c20c9cedf0834138076d38d329982e1af (patch) | |
tree | 4cedb5cc647faeef6636ad0319b495cf89d8a2ea /dynamic-layers/meta-perl/recipes-scanners/checksecurity/files/setuid-log-folder.patch | |
parent | 20c13f6335165d693f7f3270c829b3069dbbad66 (diff) | |
download | meta-security-a764533c20c9cedf0834138076d38d329982e1af.tar.gz |
meta-security: move perl and python recipes to dynamic layers structure
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'dynamic-layers/meta-perl/recipes-scanners/checksecurity/files/setuid-log-folder.patch')
-rw-r--r-- | dynamic-layers/meta-perl/recipes-scanners/checksecurity/files/setuid-log-folder.patch | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/dynamic-layers/meta-perl/recipes-scanners/checksecurity/files/setuid-log-folder.patch b/dynamic-layers/meta-perl/recipes-scanners/checksecurity/files/setuid-log-folder.patch new file mode 100644 index 0000000..540ea9c --- /dev/null +++ b/dynamic-layers/meta-perl/recipes-scanners/checksecurity/files/setuid-log-folder.patch | |||
@@ -0,0 +1,52 @@ | |||
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 | |||