diff options
author | Michał Polański <michal@polanski.me> | 2020-03-09 20:52:46 +0100 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2020-03-09 17:26:49 -0300 |
commit | eb1204d7aa01b958e7201ddb275c8e95f9e7a5cb (patch) | |
tree | a401ea412261172ebd399a08326966de4e303609 | |
parent | cb2d3b7ae9b6d682fb8a71f1742c643cdbad2015 (diff) | |
download | aports-eb1204d7aa01b958e7201ddb275c8e95f9e7a5cb.tar.bz2 aports-eb1204d7aa01b958e7201ddb275c8e95f9e7a5cb.tar.xz |
testing/traefik: fix file permissions
Configuration files shouldn't have the execute permissions.
-rw-r--r-- | testing/traefik/APKBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/traefik/APKBUILD b/testing/traefik/APKBUILD index 106678e1ae..aa5340caf2 100644 --- a/testing/traefik/APKBUILD +++ b/testing/traefik/APKBUILD @@ -3,7 +3,7 @@ # Maintainer: Joe Holden <jwh@zorins.us> pkgname=traefik pkgver=2.1.6 -pkgrel=0 +pkgrel=1 pkgdesc="The Cloud Native Edge Router" url="https://traefik.io" arch="all !x86 !s390x !armhf !armv7" # tests fails on x86 and armhf @@ -58,7 +58,7 @@ package() { "$pkgdir"/usr/sbin/$pkgname install -m750 -o $pkgname -g $pkgname -d "$pkgdir"/etc/$pkgname - install -m755 -o $pkgname -g $pkgname "$srcdir"/traefik.toml \ + install -m644 -o $pkgname -g $pkgname "$srcdir"/traefik.toml \ "$pkgdir"/etc/$pkgname/$pkgname.toml } |