Skip to content
Snippets Groups Projects
Commit 7805ec5e authored by Jakub Jirutka's avatar Jakub Jirutka :flag_ua:
Browse files

main/umurmur: don't remove user/group after uninstall

parent d651fe35
No related branches found
No related tags found
No related merge requests found
...@@ -9,7 +9,7 @@ arch="all" ...@@ -9,7 +9,7 @@ arch="all"
license="BSD" license="BSD"
depends="" depends=""
makedepends="libconfig-dev libressl-dev protobuf-c-dev autoconf automake" makedepends="libconfig-dev libressl-dev protobuf-c-dev autoconf automake"
install="$pkgname.post-install $pkgname.post-deinstall" install="$pkgname.post-install"
subpackages="$pkgname-doc" subpackages="$pkgname-doc"
pkgusers="umurmur" pkgusers="umurmur"
pkggroups="umurmur" pkggroups="umurmur"
......
if getent passwd umurmur >/dev/null 2>&1; then
userdel umurmur
fi
if getent group umurmur >/dev/null 2>&1; then
groupdel umurmur
fi
File mode changed from 100755 to 100644
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment