summaryrefslogtreecommitdiff
path: root/meta-phosphor/recipes-extended/rsyslog
diff options
context:
space:
mode:
authorSantosh Puranik <santosh.puranik@in.ibm.com>2019-06-18 09:12:15 +0300
committerBrad Bishop <bradleyb@fuzziesquirrel.com>2019-06-19 22:34:09 +0300
commite7b4ee0e353640b945f656e1390c8c726c7b638f (patch)
treef05a3391a7346f5f385817b60e6160a9fc3c5ac0 /meta-phosphor/recipes-extended/rsyslog
parent6c950bef331b264447e2212eaca232e4be20a6ca (diff)
downloadopenbmc-e7b4ee0e353640b945f656e1390c8c726c7b638f.tar.xz
Fix bitbake warning
Commit 138108a changed the way the rsyslog service is started. It removed the rsyslog override config file and also removed references to the rsyslog-policy recipe that used to install that file. However, rsyslog-policy recipe itself was still a part of the repo. Bitbake would still parse the recipe and warn about the missing rsyslog override file. This commit removes the policy recipe from the repo. Tested: No more warning when we bitbake a phosphor image. (From meta-phosphor rev: 03b8ecd41c69e2754830efc274961432d7a77358) Signed-off-by: Santosh Puranik <santosh.puranik@in.ibm.com> Change-Id: I292e13f565c40b32527427154b5f570767146827 Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
Diffstat (limited to 'meta-phosphor/recipes-extended/rsyslog')
-rw-r--r--meta-phosphor/recipes-extended/rsyslog/rsyslog-policy.bb16
1 files changed, 0 insertions, 16 deletions
diff --git a/meta-phosphor/recipes-extended/rsyslog/rsyslog-policy.bb b/meta-phosphor/recipes-extended/rsyslog/rsyslog-policy.bb
deleted file mode 100644
index 96eee0796..000000000
--- a/meta-phosphor/recipes-extended/rsyslog/rsyslog-policy.bb
+++ /dev/null
@@ -1,16 +0,0 @@
-SUMMARY = "Policy configuration for rsyslog"
-PR = "r1"
-LICENSE = "Apache-2.0"
-LIC_FILES_CHKSUM = "file://${PHOSPHORBASE}/COPYING.apache-2.0;md5=34400b68072d710fecd0a2940a0d1658"
-
-DEPENDS += "rsyslog"
-
-FILES_${PN} += "${systemd_system_unitdir}/rsyslog.service.d/rsyslog-override.conf"
-
-SRC_URI += "file://rsyslog-override.conf"
-
-do_install() {
- install -d ${D}${systemd_system_unitdir}/rsyslog.service.d
- install -m 0644 ${WORKDIR}/rsyslog-override.conf \
- ${D}${systemd_system_unitdir}/rsyslog.service.d/rsyslog-override.conf
-}