diff options
author | Conrad Kostecki <conikost@gentoo.org> | 2022-07-15 22:52:20 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2022-07-15 22:55:27 +0200 |
commit | 9d45a4ff15b5948e1ff5de2204e410a018708974 (patch) | |
tree | 289a45c47799a7ef6185cde9589a93e2dfc69853 | |
parent | media-gfx/renderdoc: remove unused patch (diff) | |
download | gentoo-9d45a4ff15b5948e1ff5de2204e410a018708974.tar.gz gentoo-9d45a4ff15b5948e1ff5de2204e410a018708974.tar.bz2 gentoo-9d45a4ff15b5948e1ff5de2204e410a018708974.zip |
net-misc/taylor-uucp: restore default shell after unemerge
Since user 'uucp' is being modified after emerge, it needs to be reset
to default after unemerge.
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
-rw-r--r-- | net-misc/taylor-uucp/taylor-uucp-1.07-r5.ebuild (renamed from net-misc/taylor-uucp/taylor-uucp-1.07-r4.ebuild) | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/net-misc/taylor-uucp/taylor-uucp-1.07-r4.ebuild b/net-misc/taylor-uucp/taylor-uucp-1.07-r5.ebuild index 40489f01df10..236af2a65b1d 100644 --- a/net-misc/taylor-uucp/taylor-uucp-1.07-r4.ebuild +++ b/net-misc/taylor-uucp/taylor-uucp-1.07-r5.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -63,3 +63,7 @@ src_install() { pkg_preinst() { usermod -s /bin/bash uucp || die } + +pkg_postrm() { + usermod -s /bin/false uucp || die +} |