forked from pool/system-user-gromox
Jan Engelhardt
076db17130
OBS-URL: https://build.opensuse.org/package/show/server:mail/system-user-gromox?expand=0&rev=6
47 lines
1.4 KiB
RPMSpec
47 lines
1.4 KiB
RPMSpec
#
|
|
# spec file for package system-user-gromox-EL9
|
|
#
|
|
# Copyright (c) 2024 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: system-user-gromox
|
|
Version: 3
|
|
Release: 0
|
|
Summary: System user and group gromox
|
|
License: MIT
|
|
Group: System/Fhs
|
|
URL: https://grommunio.com/
|
|
BuildArch: noarch
|
|
Requires(pre): shadow-utils
|
|
Requires(pre): glibc-common
|
|
Provides: group(gromox)
|
|
Provides: group(gromoxcf)
|
|
Provides: user(gromox)
|
|
|
|
%description
|
|
This package provides the gromox account.
|
|
|
|
%pre
|
|
getent group gromox >/dev/null || groupadd -r gromox
|
|
getent group gromoxcf >/dev/null || groupadd -r gromoxcf
|
|
getent passwd gromox >/dev/null || \
|
|
useradd -r -M -g gromox -d /var/lib/gromox -s /sbin/nologin \
|
|
-c "Gromox services" gromox
|
|
usermod gromox -aG gromoxcf
|
|
|
|
%files
|
|
|
|
%changelog
|