diff options
author | Jason Reiss <jreiss@multitech.com> | 2018-07-11 11:59:35 -0500 |
---|---|---|
committer | Jason Reiss <jreiss@multitech.com> | 2018-07-11 11:59:35 -0500 |
commit | 86d3fd8e3e86bb3a30d55c3719c77d9ebb7c3604 (patch) | |
tree | b0c8c097417f505bf3a227c86de44337c35cbb9e /recipes-connectivity/lora/lora-logging.bb | |
parent | 2089e3b08f775687c2827b790f5d1cf27c71f064 (diff) | |
download | meta-mlinux-86d3fd8e3e86bb3a30d55c3719c77d9ebb7c3604.tar.gz meta-mlinux-86d3fd8e3e86bb3a30d55c3719c77d9ebb7c3604.tar.bz2 meta-mlinux-86d3fd8e3e86bb3a30d55c3719c77d9ebb7c3604.zip |
move lora logging configuration to new recipe
Diffstat (limited to 'recipes-connectivity/lora/lora-logging.bb')
-rw-r--r-- | recipes-connectivity/lora/lora-logging.bb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/recipes-connectivity/lora/lora-logging.bb b/recipes-connectivity/lora/lora-logging.bb new file mode 100644 index 0000000..2a75eea --- /dev/null +++ b/recipes-connectivity/lora/lora-logging.bb @@ -0,0 +1,17 @@ +DECRIPTION = "MultiTech LoRa Logging" +PRIORITY = "optional" +SECTION = "console/utils" +LICENSE = "Proprietary" +LIC_FILES_CHKSUM = "file://LICENSE;md5=ae2ad602b723a163cd33ca5ee991fbcd" +DEPENDS = "" +PR = "r0" +RDEPENDS_${PN} += "logrotate bash" + +SRC_URI = "file://lora-logging.logrotate.conf \ + " + +do_install() { + install -d ${D}${sysconfdir}/logrotate.d + install -m 0644 ${WORKDIR}/lora-logging.logrotate.conf ${D}${sysconfdir}/logrotate.d/lora-logging.conf +} + |