diff options
author | Leonardo Arena <rnalrd@alpinelinux.org> | 2013-01-25 07:11:57 +0000 |
---|---|---|
committer | Leonardo Arena <rnalrd@alpinelinux.org> | 2013-01-25 07:11:57 +0000 |
commit | 4166ca276f4622ce65f308cd9dba352618d31d0d (patch) | |
tree | c2c0d6fcdce78916553ac3d87386d8b8ac5c8cbf /main | |
parent | 3476138479725087dc9354aaf2c0623ce05cb29c (diff) | |
download | aports-4166ca276f4622ce65f308cd9dba352618d31d0d.tar.bz2 aports-4166ca276f4622ce65f308cd9dba352618d31d0d.tar.xz |
main/squark: fix post.install
Diffstat (limited to 'main')
-rw-r--r-- | main/squark/APKBUILD | 2 | ||||
-rwxr-xr-x | main/squark/squark.post-install | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/main/squark/APKBUILD b/main/squark/APKBUILD index a2a0b8e752..c1954c8d67 100644 --- a/main/squark/APKBUILD +++ b/main/squark/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Timo Teras <timo.teras@iki.fi> pkgname=squark pkgver=0.4.5 -pkgrel=0 +pkgrel=1 pkgdesc="Squark - Squid User Authentication and Rating Kit" subpackages= depends="haserl" diff --git a/main/squark/squark.post-install b/main/squark/squark.post-install index 5c1ac67c17..28120d3e31 100755 --- a/main/squark/squark.post-install +++ b/main/squark/squark.post-install @@ -1,2 +1,2 @@ #!/bin/sh -addgroup squark &>/dev/null +addgroup squark &>/dev/null || exit 0 |