diff options
author | Andrea Galbusera <gizero@gmail.com> | 2015-09-11 15:41:05 +0200 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2015-09-23 15:37:18 +0200 |
commit | 548c3eae30870d69e4d0ba0402722421e2ce4e2d (patch) | |
tree | cf3eef93426a752aa6af7444392b3071731d265a /meta-oe | |
parent | 61b3dfda7bd204b614960bcfe67c2025699cfb97 (diff) | |
download | meta-openembedded-548c3eae30870d69e4d0ba0402722421e2ce4e2d.tar.gz |
redis: fix configuration file permissions
use 0644 instead of 0755 to install configuration file
Signed-off-by: Andrea Galbusera <gizero@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe')
-rw-r--r-- | meta-oe/recipes-extended/redis/redis_3.0.2.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-extended/redis/redis_3.0.2.bb b/meta-oe/recipes-extended/redis/redis_3.0.2.bb index e439431b1..4aea90a1a 100644 --- a/meta-oe/recipes-extended/redis/redis_3.0.2.bb +++ b/meta-oe/recipes-extended/redis/redis_3.0.2.bb | |||
@@ -27,7 +27,7 @@ do_install() { | |||
27 | oe_runmake install | 27 | oe_runmake install |
28 | 28 | ||
29 | install -d ${D}/${sysconfdir}/redis | 29 | install -d ${D}/${sysconfdir}/redis |
30 | install -m 0755 ${WORKDIR}/redis.conf ${D}/${sysconfdir}/redis/redis.conf | 30 | install -m 0644 ${WORKDIR}/redis.conf ${D}/${sysconfdir}/redis/redis.conf |
31 | 31 | ||
32 | install -d ${D}/${sysconfdir}/init.d | 32 | install -d ${D}/${sysconfdir}/init.d |
33 | install -m 0755 ${WORKDIR}/init-redis-server ${D}/${sysconfdir}/init.d/redis-server | 33 | install -m 0755 ${WORKDIR}/init-redis-server ${D}/${sysconfdir}/init.d/redis-server |