Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | Disable use of syslog to prevent sysroot user and group additions from |
| 2 | writing entries to the host's syslog. This patch should only be used |
| 3 | with the shadow-native recipe. |
| 4 | |
| 5 | Upstream-Status: Inappropriate [disable feature] |
| 6 | |
| 7 | Signed-off-by: Scott Garman <scott.a.garman@intel.com> |
| 8 | |
| 9 | diff -urN shadow-4.1.4.3.orig//src/groupadd.c shadow-4.1.4.3/src/groupadd.c |
| 10 | --- shadow-4.1.4.3.orig//src/groupadd.c 2011-02-13 09:58:16.000000000 -0800 |
| 11 | +++ shadow-4.1.4.3/src/groupadd.c 2012-04-05 10:05:59.440001758 -0700 |
| 12 | @@ -34,6 +34,9 @@ |
| 13 | |
| 14 | #ident "$Id: groupadd.c 3015 2009-06-05 22:16:56Z nekral-guest $" |
| 15 | |
| 16 | +/* Disable use of syslog since we're running this command against a sysroot */ |
| 17 | +#undef USE_SYSLOG |
| 18 | + |
| 19 | #include <ctype.h> |
| 20 | #include <fcntl.h> |
| 21 | #include <getopt.h> |
| 22 | diff -urN shadow-4.1.4.3.orig//src/useradd.c shadow-4.1.4.3/src/useradd.c |
| 23 | --- shadow-4.1.4.3.orig//src/useradd.c 2011-02-13 09:58:16.000000000 -0800 |
| 24 | +++ shadow-4.1.4.3/src/useradd.c 2012-04-05 10:06:25.076001315 -0700 |
| 25 | @@ -34,6 +34,9 @@ |
| 26 | |
| 27 | #ident "$Id: useradd.c 3015 2009-06-05 22:16:56Z nekral-guest $" |
| 28 | |
| 29 | +/* Disable use of syslog since we're running this command against a sysroot */ |
| 30 | +#undef USE_SYSLOG |
| 31 | + |
| 32 | #include <assert.h> |
| 33 | #include <ctype.h> |
| 34 | #include <errno.h> |