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>
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 96eee07..0000000
--- 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
-}