diff options
author | Yoann Congal <yoann.congal@smile.fr> | 2024-02-18 00:54:23 +0100 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2024-02-17 17:35:23 -0800 |
commit | daed1b89809719b21a79dbd3eae057fa1c54e963 (patch) | |
tree | f6dcae97eb2a37a447e0c8d2c28bf56996c01664 /meta-oe/recipes-dbs | |
parent | 528f273006965496ce7e19147f0a0e34a97a8f9c (diff) | |
download | meta-openembedded-daed1b89809719b21a79dbd3eae057fa1c54e963.tar.gz |
influxdb: Fix /etc files owner
"chown root.influxdb" is a typo of "chown root:influxdb"
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-dbs')
-rw-r--r-- | meta-oe/recipes-dbs/influxdb/influxdb_1.8.10.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-dbs/influxdb/influxdb_1.8.10.bb b/meta-oe/recipes-dbs/influxdb/influxdb_1.8.10.bb index 7f8110e4c1..0770e4bebb 100644 --- a/meta-oe/recipes-dbs/influxdb/influxdb_1.8.10.bb +++ b/meta-oe/recipes-dbs/influxdb/influxdb_1.8.10.bb | |||
@@ -45,7 +45,7 @@ do_install:prepend() { | |||
45 | do_install:append() { | 45 | do_install:append() { |
46 | install -d ${D}${sysconfdir}/influxdb | 46 | install -d ${D}${sysconfdir}/influxdb |
47 | install -m 0644 ${WORKDIR}/influxdb.conf ${D}${sysconfdir}/influxdb | 47 | install -m 0644 ${WORKDIR}/influxdb.conf ${D}${sysconfdir}/influxdb |
48 | chown -R root.influxdb ${D}${sysconfdir}/influxdb | 48 | chown -R root:influxdb ${D}${sysconfdir}/influxdb |
49 | 49 | ||
50 | install -d ${D}${sysconfdir}/init.d | 50 | install -d ${D}${sysconfdir}/init.d |
51 | install -m 0755 ${WORKDIR}/influxdb ${D}${sysconfdir}/init.d/influxdb | 51 | install -m 0755 ${WORKDIR}/influxdb ${D}${sysconfdir}/init.d/influxdb |