diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-06-19 22:41:55 -0300 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-06-19 22:41:55 -0300 |
commit | f6115f3a78ea3bb9647bf7f5f87fe88c913991cf (patch) | |
tree | 4b9e627b00cf7c2f679145ec4c869fec98d5f94c | |
parent | e0d652ba88c5db09da8e032083f04a01c322a30b (diff) | |
download | aports-f6115f3a78ea3bb9647bf7f5f87fe88c913991cf.tar.bz2 aports-f6115f3a78ea3bb9647bf7f5f87fe88c913991cf.tar.xz |
testing/sddm: exit 0 after trying to creating group and user
-rw-r--r-- | testing/sddm/APKBUILD | 2 | ||||
-rw-r--r-- | testing/sddm/sddm.pre-install | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/testing/sddm/APKBUILD b/testing/sddm/APKBUILD index c2412390e5..30b2289798 100644 --- a/testing/sddm/APKBUILD +++ b/testing/sddm/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Bart Ribbers <bribbers@disroot.org> pkgname=sddm pkgver=0.18.1 -pkgrel=1 +pkgrel=2 pkgdesc="Simple Desktop Display Manager" url="https://github.com/sddm/sddm/" arch="all" diff --git a/testing/sddm/sddm.pre-install b/testing/sddm/sddm.pre-install index 013e013089..7df022e5d1 100644 --- a/testing/sddm/sddm.pre-install +++ b/testing/sddm/sddm.pre-install @@ -2,3 +2,5 @@ addgroup -S sddm 2>/dev/null adduser -G video -h /var/lib/sddm -S -s /sbin/nologin sddm 2>/dev/null + +exit 0 |