diff options
author | Joe Slater <jslater@windriver.com> | 2013-09-06 10:44:04 -0700 |
---|---|---|
committer | Joe MacDonald <joe@deserted.net> | 2013-09-27 13:51:02 -0400 |
commit | 823a1f0f8529241f4efdba0debeef6e83eea1bee (patch) | |
tree | fab1970b26251ef088aa569fb5c4bfe259b3a64a | |
parent | 8de3944f4d41e56417cce699fd2970b4f64bae2c (diff) | |
download | meta-selinux-823a1f0f8529241f4efdba0debeef6e83eea1bee.tar.gz |
openssh: add PACKAGECONFIG data regarding audit
Define audit related parameters, but do not enable
audit support by default.
Signed-off-by: Joe Slater <jslater@windriver.com>
Signed-off-by: Joe MacDonald <joe@deserted.net>
-rw-r--r-- | recipes-connectivity/openssh/openssh_6.2p2.bbappend | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/recipes-connectivity/openssh/openssh_6.2p2.bbappend b/recipes-connectivity/openssh/openssh_6.2p2.bbappend index 43d459c..223b8cf 100644 --- a/recipes-connectivity/openssh/openssh_6.2p2.bbappend +++ b/recipes-connectivity/openssh/openssh_6.2p2.bbappend | |||
@@ -1,5 +1,13 @@ | |||
1 | PR .= ".4" | 1 | PR .= ".5" |
2 | 2 | ||
3 | inherit with-selinux | 3 | inherit with-selinux |
4 | 4 | ||
5 | FILESEXTRAPATHS_prepend := "${@target_selinux(d, '${THISDIR}/files:')}" | 5 | FILESEXTRAPATHS_prepend := "${@target_selinux(d, '${THISDIR}/files:')}" |
6 | |||
7 | # There is no distro feature just for audit. If we want it, | ||
8 | # uncomment the following. | ||
9 | # | ||
10 | #PACKAGECONFIG += "${@target_selinux(d, 'audit')}" | ||
11 | |||
12 | PACKAGECONFIG[audit] = "--with-audit=linux,--without-audit,audit," | ||
13 | |||