Set files as read-only
This commit is contained in:
parent
075b9fdf60
commit
a70b169c33
|
@ -3,7 +3,7 @@
|
|||
. ../../APKBUILD.template
|
||||
|
||||
pkgname=nnd-s6-services
|
||||
pkgver=2.93
|
||||
pkgver=2.94
|
||||
pkgrel=0
|
||||
pkgdesc="Base services for s6"
|
||||
depends="s6-rc s6-portable-utils s6-linux-utils"
|
||||
|
@ -24,6 +24,10 @@ package() {
|
|||
mkdir -p "$pkgdir/$_distpfx"/env
|
||||
mv "$builddir"/rc "$pkgdir/$_distpfx"/rc
|
||||
|
||||
# Make sure these aren't touched, always use customs
|
||||
find "$pkgdir/$_distpfx/" -type d -exec chmod 555 '{}' ';'
|
||||
find "$pkgdir/$_distpfx/" -type f -exec chmod 444 '{}' ';'
|
||||
|
||||
mkdir -p "$pkgdir/usr/libexec/nnd/"
|
||||
mv "$builddir"/tmpl "$pkgdir/usr/libexec/nnd"/s6
|
||||
|
||||
|
|
Loading…
Reference in New Issue