diff options
| author | Peter Kjellerstedt <peter.kjellerstedt@axis.com> | 2021-04-19 17:36:42 +0200 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2021-04-19 14:18:05 -0700 |
| commit | e75d617ad21e6e53ffba7c9c3ad1ac6d17c30308 (patch) | |
| tree | 8668c4489212dd6e2fd71e3b2110dfdb262ecab8 | |
| parent | 123f2c21e163b96e30319ecfd936af1306d5c9ac (diff) | |
| download | meta-openembedded-e75d617ad21e6e53ffba7c9c3ad1ac6d17c30308.tar.gz | |
syslog-ng: Merge .bb and .inc
There is only one version of the recipe, and a number of URLs were
unnecessarily duplicated in the .inc file and the .bb file.
Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
| -rw-r--r-- | meta-oe/recipes-support/syslog-ng/syslog-ng.inc | 138 | ||||
| -rw-r--r-- | meta-oe/recipes-support/syslog-ng/syslog-ng_3.31.2.bb | 137 |
2 files changed, 132 insertions, 143 deletions
diff --git a/meta-oe/recipes-support/syslog-ng/syslog-ng.inc b/meta-oe/recipes-support/syslog-ng/syslog-ng.inc deleted file mode 100644 index 80c5099731..0000000000 --- a/meta-oe/recipes-support/syslog-ng/syslog-ng.inc +++ /dev/null | |||
| @@ -1,138 +0,0 @@ | |||
| 1 | SUMMARY = "Alternative system logger daemon" | ||
| 2 | DESCRIPTION = "syslog-ng, as the name shows, is a syslogd replacement, \ | ||
| 3 | but with new functionality for the new generation. The original syslogd \ | ||
| 4 | allows messages only to be sorted based on priority/facility pairs; \ | ||
| 5 | syslog-ng adds the possibility to filter based on message contents using \ | ||
| 6 | regular expressions. The new configuration scheme is intuitive and powerful. \ | ||
| 7 | Forwarding logs over TCP and remembering all forwarding hops makes it \ | ||
| 8 | ideal for firewalled environments. \ | ||
| 9 | " | ||
| 10 | HOMEPAGE = "http://www.balabit.com/network-security/syslog-ng/opensource-logging-system" | ||
| 11 | |||
| 12 | LICENSE = "GPLv2 & LGPLv2.1" | ||
| 13 | LIC_FILES_CHKSUM = "file://COPYING;md5=189c3826d32deaf83ad8d0d538a10023" | ||
| 14 | |||
| 15 | # util-linux added to get libuuid | ||
| 16 | DEPENDS = "libpcre flex glib-2.0 openssl util-linux bison-native" | ||
| 17 | |||
| 18 | # We expect the recipe to add anything specific for that version to these defaults. | ||
| 19 | # | ||
| 20 | SRC_URI = "https://github.com/balabit/syslog-ng/releases/download/${BP}/${BP}.tar.gz \ | ||
| 21 | file://syslog-ng.conf.systemd \ | ||
| 22 | file://syslog-ng.conf.sysvinit \ | ||
| 23 | file://initscript \ | ||
| 24 | file://volatiles.03_syslog-ng \ | ||
| 25 | " | ||
| 26 | |||
| 27 | UPSTREAM_CHECK_URI = "https://github.com/balabit/syslog-ng/releases" | ||
| 28 | |||
| 29 | inherit autotools gettext systemd pkgconfig update-rc.d multilib_header | ||
| 30 | |||
| 31 | EXTRA_OECONF = " \ | ||
| 32 | --enable-dynamic-linking \ | ||
| 33 | --disable-sub-streams \ | ||
| 34 | --disable-pacct \ | ||
| 35 | --localstatedir=${localstatedir}/lib/${BPN} \ | ||
| 36 | --sysconfdir=${sysconfdir}/${BPN} \ | ||
| 37 | --with-module-dir=${libdir}/${BPN} \ | ||
| 38 | --with-sysroot=${STAGING_DIR_HOST} \ | ||
| 39 | --without-mongoc --disable-mongodb \ | ||
| 40 | --with-librabbitmq-client=no \ | ||
| 41 | --disable-python \ | ||
| 42 | --disable-java --disable-java-modules \ | ||
| 43 | --with-pidfile-dir=${localstatedir}/run/${BPN} \ | ||
| 44 | " | ||
| 45 | |||
| 46 | PACKAGECONFIG ??= " \ | ||
| 47 | ${@bb.utils.filter('DISTRO_FEATURES', 'ipv6 systemd', d)} \ | ||
| 48 | " | ||
| 49 | PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6,," | ||
| 50 | PACKAGECONFIG[systemd] = "--enable-systemd --with-systemdsystemunitdir=${systemd_unitdir}/system/,--disable-systemd --without-systemdsystemunitdir,systemd," | ||
| 51 | PACKAGECONFIG[linux-caps] = "--enable-linux-caps,--disable-linux-caps,libcap," | ||
| 52 | PACKAGECONFIG[dbi] = "--enable-sql,--disable-sql,libdbi," | ||
| 53 | PACKAGECONFIG[spoof-source] = "--enable-spoof-source --with-libnet=${STAGING_BINDIR_CROSS},--disable-spoof-source,libnet," | ||
| 54 | PACKAGECONFIG[http] = "--enable-http,--disable-http,curl," | ||
| 55 | PACKAGECONFIG[smtp] = "--enable-smtp --with-libesmtp=${STAGING_LIBDIR},--disable-smtp,libesmtp," | ||
| 56 | PACKAGECONFIG[json] = "--enable-json,--disable-json,json-c," | ||
| 57 | PACKAGECONFIG[tcp-wrapper] = "--enable-tcp-wrapper,--disable-tcp-wrapper,tcp-wrappers," | ||
| 58 | PACKAGECONFIG[geoip] = "--enable-geoip,--disable-geoip,geoip," | ||
| 59 | PACKAGECONFIG[native] = "--enable-native,--disable-native,," | ||
| 60 | |||
| 61 | do_configure_prepend() { | ||
| 62 | olddir=$(pwd) | ||
| 63 | cd ${AUTOTOOLS_SCRIPT_PATH} | ||
| 64 | |||
| 65 | ACLOCAL="$ACLOCAL" autoreconf -Wcross --verbose --install --force ${EXTRA_AUTORECONF} -I ${S}/m4 ${ACLOCALEXTRAPATH} || die "extra autoreconf execution failed." | ||
| 66 | |||
| 67 | cd $olddir | ||
| 68 | } | ||
| 69 | |||
| 70 | do_install_append() { | ||
| 71 | install -d ${D}${sysconfdir}/${BPN} | ||
| 72 | install -d ${D}${sysconfdir}/init.d | ||
| 73 | install -m 755 ${WORKDIR}/initscript ${D}${sysconfdir}/init.d/syslog | ||
| 74 | |||
| 75 | install -d ${D}${sysconfdir}/default/volatiles/ | ||
| 76 | install -m 644 ${WORKDIR}/volatiles.03_syslog-ng ${D}${sysconfdir}/default/volatiles/03_syslog-ng | ||
| 77 | install -d ${D}${sysconfdir}/tmpfiles.d/ | ||
| 78 | install -m 644 ${WORKDIR}/syslog-ng-tmp.conf ${D}${sysconfdir}/tmpfiles.d/syslog-ng.conf | ||
| 79 | |||
| 80 | install -d ${D}${localstatedir}/lib/${BPN} | ||
| 81 | # Remove /var/run as it is created on startup | ||
| 82 | rm -rf ${D}${localstatedir}/run | ||
| 83 | |||
| 84 | # support for systemd | ||
| 85 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then | ||
| 86 | install -m 644 ${WORKDIR}/syslog-ng.conf.systemd ${D}${sysconfdir}/${BPN}/${BPN}.conf | ||
| 87 | |||
| 88 | install -d ${D}${systemd_unitdir}/system/ | ||
| 89 | install -m 644 ${S}/contrib/systemd/${BPN}@.service ${D}${systemd_unitdir}/system/${BPN}@.service | ||
| 90 | install -m 644 ${S}/contrib/systemd/${BPN}@default ${D}${sysconfdir}/default/${BPN}@default | ||
| 91 | |||
| 92 | sed -i -e 's,@SBINDIR@,${sbindir},g' ${D}${systemd_unitdir}/system/${BPN}@.service ${D}${sysconfdir}/default/${BPN}@default | ||
| 93 | sed -i -e 's,@LOCALSTATEDIR@,${localstatedir},g' ${D}${systemd_unitdir}/system/${BPN}@.service ${D}${sysconfdir}/default/${BPN}@default | ||
| 94 | sed -i -e 's,@BASEBINDIR@,${base_bindir},g' ${D}${systemd_unitdir}/system/${BPN}@.service ${D}${sysconfdir}/default/${BPN}@default | ||
| 95 | |||
| 96 | install -d ${D}${systemd_unitdir}/system/multi-user.target.wants | ||
| 97 | ln -sf ../${BPN}@.service ${D}${systemd_unitdir}/system/multi-user.target.wants/${BPN}@default.service | ||
| 98 | else | ||
| 99 | install -m 644 ${WORKDIR}/syslog-ng.conf.sysvinit ${D}${sysconfdir}/${BPN}/${BPN}.conf | ||
| 100 | fi | ||
| 101 | |||
| 102 | oe_multilib_header syslog-ng/syslog-ng-config.h | ||
| 103 | } | ||
| 104 | |||
| 105 | FILES_${PN} += "${datadir}/include/scl/ ${datadir}/xsd ${datadir}/tools ${systemd_unitdir}/system/multi-user.target.wants/*" | ||
| 106 | RDEPENDS_${PN} += "gawk ${@bb.utils.contains('PACKAGECONFIG','json','${PN}-jconf','',d)}" | ||
| 107 | |||
| 108 | FILES_${PN}-jconf += " \ | ||
| 109 | ${datadir}/${BPN}/include/scl/cim \ | ||
| 110 | ${datadir}/${BPN}/include/scl/elasticsearch \ | ||
| 111 | ${datadir}/${BPN}/include/scl/ewmm \ | ||
| 112 | ${datadir}/${BPN}/include/scl/graylog2 \ | ||
| 113 | ${datadir}/${BPN}/include/scl/loggly \ | ||
| 114 | ${datadir}/${BPN}/include/scl/logmatic \ | ||
| 115 | " | ||
| 116 | |||
| 117 | # This overcomes the syslog-ng rdepends on syslog-ng-dev QA Error | ||
| 118 | PACKAGES =+ "${PN}-jconf ${PN}-libs ${PN}-libs-dev" | ||
| 119 | RPROVIDES_${PN}-dbg += "${PN}-libs-dbg" | ||
| 120 | FILES_${PN}-libs = "${libdir}/${BPN}/*.so ${libdir}/libsyslog-ng-*.so*" | ||
| 121 | FILES_${PN}-libs-dev = "${libdir}/${BPN}/lib*.la" | ||
| 122 | FILES_${PN}-staticdev += "${libdir}/${BPN}/libtest/*.a" | ||
| 123 | FILES_${PN} += "${systemd_unitdir}/system/*.service" | ||
| 124 | INSANE_SKIP_${PN}-libs = "dev-so" | ||
| 125 | RDEPENDS_${PN} += "${PN}-libs" | ||
| 126 | |||
| 127 | CONFFILES_${PN} = "${sysconfdir}/${BPN}.conf ${sysconfdir}/scl.conf" | ||
| 128 | |||
| 129 | RCONFLICTS_${PN} = "busybox-syslog sysklogd rsyslog" | ||
| 130 | RCONFLICTS_${PN}-libs = "busybox-syslog sysklogd rsyslog" | ||
| 131 | |||
| 132 | RPROVIDES_${PN} += "${PN}-systemd" | ||
| 133 | RREPLACES_${PN} += "${PN}-systemd" | ||
| 134 | RCONFLICTS_${PN} += "${PN}-systemd" | ||
| 135 | SYSTEMD_SERVICE_${PN} = "${BPN}@.service" | ||
| 136 | |||
| 137 | INITSCRIPT_NAME = "syslog" | ||
| 138 | INITSCRIPT_PARAMS = "start 20 2 3 4 5 . stop 90 0 1 6 ." | ||
diff --git a/meta-oe/recipes-support/syslog-ng/syslog-ng_3.31.2.bb b/meta-oe/recipes-support/syslog-ng/syslog-ng_3.31.2.bb index 5d2b7f77ea..ce1c41e35d 100644 --- a/meta-oe/recipes-support/syslog-ng/syslog-ng_3.31.2.bb +++ b/meta-oe/recipes-support/syslog-ng/syslog-ng_3.31.2.bb | |||
| @@ -1,8 +1,21 @@ | |||
| 1 | require syslog-ng.inc | 1 | SUMMARY = "Alternative system logger daemon" |
| 2 | DESCRIPTION = "syslog-ng, as the name shows, is a syslogd replacement, \ | ||
| 3 | but with new functionality for the new generation. The original syslogd \ | ||
| 4 | allows messages only to be sorted based on priority/facility pairs; \ | ||
| 5 | syslog-ng adds the possibility to filter based on message contents using \ | ||
| 6 | regular expressions. The new configuration scheme is intuitive and powerful. \ | ||
| 7 | Forwarding logs over TCP and remembering all forwarding hops makes it \ | ||
| 8 | ideal for firewalled environments. \ | ||
| 9 | " | ||
| 10 | HOMEPAGE = "http://www.balabit.com/network-security/syslog-ng/opensource-logging-system" | ||
| 2 | 11 | ||
| 3 | # We only want to add stuff we need to the defaults provided in syslog-ng.inc. | 12 | LICENSE = "GPLv2 & LGPLv2.1" |
| 4 | # | 13 | LIC_FILES_CHKSUM = "file://COPYING;md5=189c3826d32deaf83ad8d0d538a10023" |
| 5 | SRC_URI += "https://github.com/balabit/syslog-ng/releases/download/${BP}/${BP}.tar.gz \ | 14 | |
| 15 | # util-linux added to get libuuid | ||
| 16 | DEPENDS = "libpcre flex glib-2.0 openssl util-linux bison-native" | ||
| 17 | |||
| 18 | SRC_URI = "https://github.com/balabit/syslog-ng/releases/download/${BP}/${BP}.tar.gz \ | ||
| 6 | file://syslog-ng.conf.systemd \ | 19 | file://syslog-ng.conf.systemd \ |
| 7 | file://syslog-ng.conf.sysvinit \ | 20 | file://syslog-ng.conf.sysvinit \ |
| 8 | file://initscript \ | 21 | file://initscript \ |
| @@ -11,6 +24,120 @@ SRC_URI += "https://github.com/balabit/syslog-ng/releases/download/${BP}/${BP}.t | |||
| 11 | file://syslog-ng.service-the-syslog-ng-service.patch \ | 24 | file://syslog-ng.service-the-syslog-ng-service.patch \ |
| 12 | file://0002-scl-fix-wrong-ownership-during-installation.patch \ | 25 | file://0002-scl-fix-wrong-ownership-during-installation.patch \ |
| 13 | file://0005-.py-s-python-python3-exclude-tests.patch \ | 26 | file://0005-.py-s-python-python3-exclude-tests.patch \ |
| 14 | " | 27 | " |
| 28 | |||
| 15 | SRC_URI[md5sum] = "69ef4dc5628d5e603e9e4a1b937592f8" | 29 | SRC_URI[md5sum] = "69ef4dc5628d5e603e9e4a1b937592f8" |
| 16 | SRC_URI[sha256sum] = "2eeb8e0dbbcb556fdd4e50bc9f29bc8c66c9b153026f87caa7567bd3139c186a" | 30 | SRC_URI[sha256sum] = "2eeb8e0dbbcb556fdd4e50bc9f29bc8c66c9b153026f87caa7567bd3139c186a" |
| 31 | |||
| 32 | UPSTREAM_CHECK_URI = "https://github.com/balabit/syslog-ng/releases" | ||
| 33 | |||
| 34 | inherit autotools gettext systemd pkgconfig update-rc.d multilib_header | ||
| 35 | |||
| 36 | EXTRA_OECONF = " \ | ||
| 37 | --enable-dynamic-linking \ | ||
| 38 | --disable-sub-streams \ | ||
| 39 | --disable-pacct \ | ||
| 40 | --localstatedir=${localstatedir}/lib/${BPN} \ | ||
| 41 | --sysconfdir=${sysconfdir}/${BPN} \ | ||
| 42 | --with-module-dir=${libdir}/${BPN} \ | ||
| 43 | --with-sysroot=${STAGING_DIR_HOST} \ | ||
| 44 | --without-mongoc --disable-mongodb \ | ||
| 45 | --with-librabbitmq-client=no \ | ||
| 46 | --disable-python \ | ||
| 47 | --disable-java --disable-java-modules \ | ||
| 48 | --with-pidfile-dir=${localstatedir}/run/${BPN} \ | ||
| 49 | " | ||
| 50 | |||
| 51 | PACKAGECONFIG ??= " \ | ||
| 52 | ${@bb.utils.filter('DISTRO_FEATURES', 'ipv6 systemd', d)} \ | ||
| 53 | " | ||
| 54 | PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6,," | ||
| 55 | PACKAGECONFIG[systemd] = "--enable-systemd --with-systemdsystemunitdir=${systemd_unitdir}/system/,--disable-systemd --without-systemdsystemunitdir,systemd," | ||
| 56 | PACKAGECONFIG[linux-caps] = "--enable-linux-caps,--disable-linux-caps,libcap," | ||
| 57 | PACKAGECONFIG[dbi] = "--enable-sql,--disable-sql,libdbi," | ||
| 58 | PACKAGECONFIG[spoof-source] = "--enable-spoof-source --with-libnet=${STAGING_BINDIR_CROSS},--disable-spoof-source,libnet," | ||
| 59 | PACKAGECONFIG[http] = "--enable-http,--disable-http,curl," | ||
| 60 | PACKAGECONFIG[smtp] = "--enable-smtp --with-libesmtp=${STAGING_LIBDIR},--disable-smtp,libesmtp," | ||
| 61 | PACKAGECONFIG[json] = "--enable-json,--disable-json,json-c," | ||
| 62 | PACKAGECONFIG[tcp-wrapper] = "--enable-tcp-wrapper,--disable-tcp-wrapper,tcp-wrappers," | ||
| 63 | PACKAGECONFIG[geoip] = "--enable-geoip,--disable-geoip,geoip," | ||
| 64 | PACKAGECONFIG[native] = "--enable-native,--disable-native,," | ||
| 65 | |||
| 66 | do_configure_prepend() { | ||
| 67 | olddir=$(pwd) | ||
| 68 | cd ${AUTOTOOLS_SCRIPT_PATH} | ||
| 69 | |||
| 70 | ACLOCAL="$ACLOCAL" autoreconf -Wcross --verbose --install --force ${EXTRA_AUTORECONF} -I ${S}/m4 ${ACLOCALEXTRAPATH} || die "extra autoreconf execution failed." | ||
| 71 | |||
| 72 | cd $olddir | ||
| 73 | } | ||
| 74 | |||
| 75 | do_install_append() { | ||
| 76 | install -d ${D}${sysconfdir}/${BPN} | ||
| 77 | install -d ${D}${sysconfdir}/init.d | ||
| 78 | install -m 755 ${WORKDIR}/initscript ${D}${sysconfdir}/init.d/syslog | ||
| 79 | |||
| 80 | install -d ${D}${sysconfdir}/default/volatiles/ | ||
| 81 | install -m 644 ${WORKDIR}/volatiles.03_syslog-ng ${D}${sysconfdir}/default/volatiles/03_syslog-ng | ||
| 82 | install -d ${D}${sysconfdir}/tmpfiles.d/ | ||
| 83 | install -m 644 ${WORKDIR}/syslog-ng-tmp.conf ${D}${sysconfdir}/tmpfiles.d/syslog-ng.conf | ||
| 84 | |||
| 85 | install -d ${D}${localstatedir}/lib/${BPN} | ||
| 86 | # Remove /var/run as it is created on startup | ||
| 87 | rm -rf ${D}${localstatedir}/run | ||
| 88 | |||
| 89 | # support for systemd | ||
| 90 | if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then | ||
| 91 | install -m 644 ${WORKDIR}/syslog-ng.conf.systemd ${D}${sysconfdir}/${BPN}/${BPN}.conf | ||
| 92 | |||
| 93 | install -d ${D}${systemd_unitdir}/system/ | ||
| 94 | install -m 644 ${S}/contrib/systemd/${BPN}@.service ${D}${systemd_unitdir}/system/${BPN}@.service | ||
| 95 | install -m 644 ${S}/contrib/systemd/${BPN}@default ${D}${sysconfdir}/default/${BPN}@default | ||
| 96 | |||
| 97 | sed -i -e 's,@SBINDIR@,${sbindir},g' ${D}${systemd_unitdir}/system/${BPN}@.service ${D}${sysconfdir}/default/${BPN}@default | ||
| 98 | sed -i -e 's,@LOCALSTATEDIR@,${localstatedir},g' ${D}${systemd_unitdir}/system/${BPN}@.service ${D}${sysconfdir}/default/${BPN}@default | ||
| 99 | sed -i -e 's,@BASEBINDIR@,${base_bindir},g' ${D}${systemd_unitdir}/system/${BPN}@.service ${D}${sysconfdir}/default/${BPN}@default | ||
| 100 | |||
| 101 | install -d ${D}${systemd_unitdir}/system/multi-user.target.wants | ||
| 102 | ln -sf ../${BPN}@.service ${D}${systemd_unitdir}/system/multi-user.target.wants/${BPN}@default.service | ||
| 103 | else | ||
| 104 | install -m 644 ${WORKDIR}/syslog-ng.conf.sysvinit ${D}${sysconfdir}/${BPN}/${BPN}.conf | ||
| 105 | fi | ||
| 106 | |||
| 107 | oe_multilib_header syslog-ng/syslog-ng-config.h | ||
| 108 | } | ||
| 109 | |||
| 110 | FILES_${PN} += "${datadir}/include/scl/ ${datadir}/xsd ${datadir}/tools ${systemd_unitdir}/system/multi-user.target.wants/*" | ||
| 111 | RDEPENDS_${PN} += "gawk ${@bb.utils.contains('PACKAGECONFIG','json','${PN}-jconf','',d)}" | ||
| 112 | |||
| 113 | FILES_${PN}-jconf += " \ | ||
| 114 | ${datadir}/${BPN}/include/scl/cim \ | ||
| 115 | ${datadir}/${BPN}/include/scl/elasticsearch \ | ||
| 116 | ${datadir}/${BPN}/include/scl/ewmm \ | ||
| 117 | ${datadir}/${BPN}/include/scl/graylog2 \ | ||
| 118 | ${datadir}/${BPN}/include/scl/loggly \ | ||
| 119 | ${datadir}/${BPN}/include/scl/logmatic \ | ||
| 120 | " | ||
| 121 | |||
| 122 | # This overcomes the syslog-ng rdepends on syslog-ng-dev QA Error | ||
| 123 | PACKAGES =+ "${PN}-jconf ${PN}-libs ${PN}-libs-dev" | ||
| 124 | RPROVIDES_${PN}-dbg += "${PN}-libs-dbg" | ||
| 125 | FILES_${PN}-libs = "${libdir}/${BPN}/*.so ${libdir}/libsyslog-ng-*.so*" | ||
| 126 | FILES_${PN}-libs-dev = "${libdir}/${BPN}/lib*.la" | ||
| 127 | FILES_${PN}-staticdev += "${libdir}/${BPN}/libtest/*.a" | ||
| 128 | FILES_${PN} += "${systemd_unitdir}/system/*.service" | ||
| 129 | INSANE_SKIP_${PN}-libs = "dev-so" | ||
| 130 | RDEPENDS_${PN} += "${PN}-libs" | ||
| 131 | |||
| 132 | CONFFILES_${PN} = "${sysconfdir}/${BPN}.conf ${sysconfdir}/scl.conf" | ||
| 133 | |||
| 134 | RCONFLICTS_${PN} = "busybox-syslog sysklogd rsyslog" | ||
| 135 | RCONFLICTS_${PN}-libs = "busybox-syslog sysklogd rsyslog" | ||
| 136 | |||
| 137 | RPROVIDES_${PN} += "${PN}-systemd" | ||
| 138 | RREPLACES_${PN} += "${PN}-systemd" | ||
| 139 | RCONFLICTS_${PN} += "${PN}-systemd" | ||
| 140 | SYSTEMD_SERVICE_${PN} = "${BPN}@.service" | ||
| 141 | |||
| 142 | INITSCRIPT_NAME = "syslog" | ||
| 143 | INITSCRIPT_PARAMS = "start 20 2 3 4 5 . stop 90 0 1 6 ." | ||
