diff options
Diffstat (limited to 'community/ushare')
-rw-r--r-- | community/ushare/PKGBUILD | 4 | ||||
-rw-r--r-- | community/ushare/ushare.install | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/community/ushare/PKGBUILD b/community/ushare/PKGBUILD index 98f8bc5cc..0a988e352 100644 --- a/community/ushare/PKGBUILD +++ b/community/ushare/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 51319 2011-07-07 10:51:58Z spupykin $ +# $Id: PKGBUILD 54798 2011-08-26 08:53:52Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Maintainer: Kessia 'even' Pinheiro <kessiapinheiro at gmail.com> # Contributor: kastor <kastor@fobos.org.ar> pkgname=ushare pkgver=1.1a -pkgrel=14 +pkgrel=15 pkgdesc="A free UPnP A/V Media Server for Linux" url="http://ushare.geexbox.org" license=('GPL2') diff --git a/community/ushare/ushare.install b/community/ushare/ushare.install index ee677c849..c58209616 100644 --- a/community/ushare/ushare.install +++ b/community/ushare/ushare.install @@ -1,9 +1,9 @@ post_install() { if [ -z "`grep '^ushare:' /etc/group`" ]; then - groupadd ushare + groupadd -r ushare fi if [ -z "`grep '^ushare:' /etc/passwd`" ]; then - useradd -d /var/empty -g ushare -s /sbin/nologin ushare + useradd -r -d /var/empty -g ushare -s /sbin/nologin ushare fi } |