summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBruce Ashfield <bruce.ashfield@gmail.com>2025-03-26 03:36:51 +0000
committerBruce Ashfield <bruce.ashfield@gmail.com>2025-03-26 03:36:51 +0000
commita3ffe361845574c93ca8dab6cc95d22ef7d024ce (patch)
tree0f944defa9aba60dcb255e2bada047004e317d53
parent5385113151b669dd5593acaa28e26fc81c8ba0d2 (diff)
downloadmeta-virtualization-a3ffe361845574c93ca8dab6cc95d22ef7d024ce.tar.gz
nagios-nrpe: fix WORKDIR -> UNPACKDIR references
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
-rw-r--r--recipes-extended/nagios/nagios-nrpe_4.0.2.bb4
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes-extended/nagios/nagios-nrpe_4.0.2.bb b/recipes-extended/nagios/nagios-nrpe_4.0.2.bb
index ac54469b..503ef547 100644
--- a/recipes-extended/nagios/nagios-nrpe_4.0.2.bb
+++ b/recipes-extended/nagios/nagios-nrpe_4.0.2.bb
@@ -73,11 +73,11 @@ do_install:append() {
73 -i ${D}${NAGIOS_CONF_DIR}/nrpe.cfg 73 -i ${D}${NAGIOS_CONF_DIR}/nrpe.cfg
74 74
75 install -d ${D}${NAGIOS_PLUGIN_CONF_DIR} 75 install -d ${D}${NAGIOS_PLUGIN_CONF_DIR}
76 install -m 664 ${WORKDIR}/check_nrpe.cfg ${D}${NAGIOS_PLUGIN_CONF_DIR} 76 install -m 664 ${UNPACKDIR}/check_nrpe.cfg ${D}${NAGIOS_PLUGIN_CONF_DIR}
77 77
78 if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then 78 if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then
79 install -d ${D}${systemd_unitdir}/system 79 install -d ${D}${systemd_unitdir}/system
80 install -m 644 ${WORKDIR}/nagios-nrpe.service ${D}${systemd_unitdir}/system/ 80 install -m 644 ${UNPACKDIR}/nagios-nrpe.service ${D}${systemd_unitdir}/system/
81 fi 81 fi
82} 82}
83 83