diff options
Diffstat (limited to 'testing/lshell')
-rw-r--r-- | testing/lshell/APKBUILD | 2 | ||||
-rw-r--r-- | testing/lshell/lshell.pre-install | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/testing/lshell/APKBUILD b/testing/lshell/APKBUILD index 6504225ad0..b0b59bc592 100644 --- a/testing/lshell/APKBUILD +++ b/testing/lshell/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Fabian Affolter <fabian@affolter-engineering.ch> pkgname=lshell pkgver=0.9.16 -pkgrel=0 +pkgrel=1 pkgdesc="Python-based limited Shell" url="http://ghantoos.org/limited-shell-lshell" arch="noarch" diff --git a/testing/lshell/lshell.pre-install b/testing/lshell/lshell.pre-install new file mode 100644 index 0000000000..b8b883eb65 --- /dev/null +++ b/testing/lshell/lshell.pre-install @@ -0,0 +1,5 @@ +#!/bin/sh +addgroup -S lshell 2>/dev/null +adduser -S -H -h /var/empty -G lshell -D -s /sbin/nologin lshell 2>/dev/null +exit 0 + |