- Update to release 7
OBS-URL: https://build.opensuse.org/package/show/server:mail/system-user-grommunio?expand=0&rev=7
This commit is contained in:
commit
95bf0d1561
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
## Default LFS
|
||||
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||
*.png filter=lfs diff=lfs merge=lfs -text
|
||||
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||
*.zst filter=lfs diff=lfs merge=lfs -text
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
.osc
|
5
debian.changelog
Normal file
5
debian.changelog
Normal file
@ -0,0 +1,5 @@
|
||||
system-user-grommunio (0-0) unstable; urgency=low
|
||||
|
||||
* Initial package.
|
||||
|
||||
-- Grommunio <null@grommunio.com> Mon, 25 Jan 2021 10:00:00 +0100
|
1
debian.compat
Normal file
1
debian.compat
Normal file
@ -0,0 +1 @@
|
||||
12
|
28
debian.control
Normal file
28
debian.control
Normal file
@ -0,0 +1,28 @@
|
||||
Source: system-user-grommunio
|
||||
Priority: optional
|
||||
Section: mail
|
||||
Maintainer: Grommunio <null@grommunio.com>
|
||||
Standards-Version: 4.5.0
|
||||
|
||||
Package: system-user-grommunio
|
||||
Architecture: all
|
||||
Pre-Depends: adduser, passwd, system-group-gromoxcf, ${misc:Pre-Depends}
|
||||
Depends: ${misc:Depends}
|
||||
Provides: system-group-groindex, system-group-grommunio,
|
||||
system-group-groweb, system-user-grommunio, system-user-groindex,
|
||||
system-user-groweb
|
||||
Replaces: system-user-groweb
|
||||
Breaks: system-user-groweb
|
||||
Description: General grommunio system user identities
|
||||
.
|
||||
This package provides identities related to the Grommunio groupware suite:
|
||||
* the "grommunio" user identity for running the Administration API
|
||||
(usually an uwsgi process instance); AAPI needs to read
|
||||
mysql_adaptor.cfg and ldap_adaptor.cfg, so is added to group
|
||||
gromoxcf
|
||||
* the "groweb" user identity for running PHP-FPM workers
|
||||
* the "groweb" group identity for marking data to be consumed by the
|
||||
groweb identity but also created by grommunio-index, e.g. groweb
|
||||
search indexes
|
||||
* the "groindex" user identity for running the indexer service; this
|
||||
needs to read mysql_adaptor.cfg so is added to group gromoxcf
|
13
debian.rules
Normal file
13
debian.rules
Normal file
@ -0,0 +1,13 @@
|
||||
#!/usr/bin/make -f
|
||||
sudir = usr/lib/sysusers.d
|
||||
sufile = ${sudir}/system-user-grommunio.conf
|
||||
%:
|
||||
dh $@ --parallel
|
||||
override_dh_auto_install:
|
||||
mkdir -p ${sudir}
|
||||
echo 'u grommunio - "user for grommunio administration"' >${sufile}
|
||||
echo 'u groweb - "user for grommunio-web"' >${sufile}
|
||||
echo 'u groindex - "user for grommunio-index"' >${sufile}
|
||||
echo 'm grommunio gromoxcf' >${sufile}
|
||||
echo 'm groindex groweb' >${sufile}
|
||||
echo 'm groindex gromoxcf' >${sufile}
|
1
debian.system-user-grommunio.install
Normal file
1
debian.system-user-grommunio.install
Normal file
@ -0,0 +1 @@
|
||||
usr/
|
16
debian.system-user-grommunio.postinst
Normal file
16
debian.system-user-grommunio.postinst
Normal file
@ -0,0 +1,16 @@
|
||||
#!/bin/sh
|
||||
case "$1" in
|
||||
configure|reconfigure)
|
||||
if [ -x /usr/bin/systemd-sysusers ]; then
|
||||
/usr/bin/systemd-sysusers system-user-grommunio.conf
|
||||
else
|
||||
for i in grommunio groweb groindex; do
|
||||
getent group "$i" >/dev/null || addgroup --system "$i"
|
||||
getent passwd "$i" >/dev/null || \
|
||||
adduser --system "$i" --home / --no-create-home --disabled-password --ingroup "$i"
|
||||
done
|
||||
usermod grommunio -aG gromoxcf
|
||||
usermod groindex -aG gromoxcf
|
||||
fi
|
||||
;;
|
||||
esac
|
3
dummy_for_debtransform.tgz
Normal file
3
dummy_for_debtransform.tgz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fd211e6cbb3d0d7d6fe7c8c8389bb5d269df09692848663626636930e4246892
|
||||
size 231
|
15
system-user-grommunio.changes
Normal file
15
system-user-grommunio.changes
Normal file
@ -0,0 +1,15 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 4 08:03:16 UTC 2024 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
- Update to release 7
|
||||
* New "groindex" user. Updated package descriptions.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 17 15:45:41 UTC 2023 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
- Add groweb user for grommunio-web, grommunio-index
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jul 25 16:47:37 UTC 2022 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
- Initial package for build.opensuse.org
|
10
system-user-grommunio.dsc
Normal file
10
system-user-grommunio.dsc
Normal file
@ -0,0 +1,10 @@
|
||||
Format: 1.0
|
||||
Source: system-user-grommunio
|
||||
Architecture: all
|
||||
Version: 7
|
||||
Maintainer: Grommunio <null@grommunio.com>
|
||||
Homepage: https://grommunio.com
|
||||
Standards-Version: 3.9.4
|
||||
# You need to update both .dsc and debian.control (*sigh* - Debian)
|
||||
Build-Depends:
|
||||
debhelper
|
96
system-user-grommunio.spec
Normal file
96
system-user-grommunio.spec
Normal file
@ -0,0 +1,96 @@
|
||||
#
|
||||
# spec file for package system-user-grommunio
|
||||
#
|
||||
# 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-grommunio
|
||||
Version: 7
|
||||
Release: 0
|
||||
Summary: General grommunio system user identities
|
||||
License: MIT
|
||||
Group: System/Fhs
|
||||
URL: https://grommunio.com/
|
||||
BuildArch: noarch
|
||||
BuildRequires: systemd-rpm-macros
|
||||
Obsoletes: system-user-groweb < %version-%release
|
||||
Provides: system-user-groweb = %version-%release
|
||||
%if 0%{?suse_version}
|
||||
BuildRequires: sysuser-tools
|
||||
%sysusers_requires
|
||||
%else
|
||||
Provides: group(groindex)
|
||||
Provides: group(grommunio)
|
||||
Provides: group(groweb)
|
||||
Provides: user(groindex)
|
||||
Provides: user(grommunio)
|
||||
Provides: user(groweb)
|
||||
Requires(pre): /usr/sbin/useradd
|
||||
Requires(pre): /usr/sbin/groupadd
|
||||
%endif
|
||||
Requires(pre): group(gromoxcf)
|
||||
|
||||
%description
|
||||
This package provides identities related to the Grommunio groupware suite:
|
||||
* the "grommunio" user identity for running the Administration API
|
||||
(usually an uwsgi process instance); AAPI needs to read
|
||||
mysql_adaptor.cfg and ldap_adaptor.cfg, so is added to group
|
||||
gromoxcf
|
||||
* the "groweb" user identity for running PHP-FPM workers
|
||||
* the "groweb" group identity for marking data to be consumed by the
|
||||
groweb identity but also created by grommunio-index, e.g. groweb
|
||||
search indexes
|
||||
* the "groindex" user identity for running the indexer service; this
|
||||
needs to read mysql_adaptor.cfg so is added to group gromoxcf
|
||||
|
||||
%prep
|
||||
|
||||
%build
|
||||
cat <<-EOF >u.conf
|
||||
u grommunio - "user for grommunio administration"
|
||||
u groweb - "user for grommunio-web"
|
||||
u groindex - "user for grommunio-index"
|
||||
m grommunio gromoxcf
|
||||
m groindex groweb
|
||||
m groindex gromoxcf
|
||||
EOF
|
||||
%if 0%{?suse_version}
|
||||
%sysusers_generate_pre u.conf user system-user-grommunio.conf
|
||||
%else
|
||||
>user.pre
|
||||
%endif
|
||||
|
||||
%install
|
||||
install -Dpm0644 u.conf "%buildroot/%_sysusersdir/system-user-grommunio.conf"
|
||||
|
||||
%pre -f user.pre
|
||||
%if !0%{?suse_version}
|
||||
getent group grommunio >/dev/null || %_sbindir/groupadd -r grommunio
|
||||
getent passwd grommunio >/dev/null || %_sbindir/useradd -g grommunio -s /sbin/nologin \
|
||||
-r -c "user for grommunio administration" -d / grommunio
|
||||
getent group groweb >/dev/null || %_sbindir/groupadd -r groweb
|
||||
getent passwd groweb >/dev/null || %_sbindir/useradd -g groweb -s /sbin/nologin \
|
||||
-r -c "user for grommunio-web" -d / groweb
|
||||
getent group groindex >/dev/null || %_sbindir/groupadd -r groindex
|
||||
getent passwd groindex >/dev/null || %_sbindir/useradd -g groindex -s /sbin/nologin \
|
||||
-r -c "user for grommunio-index" -d / groindex
|
||||
usermod grommunio -aG gromoxcf
|
||||
usermod groindex -aG gromoxcf
|
||||
%endif
|
||||
|
||||
%files
|
||||
%_sysusersdir/*.conf
|
||||
|
||||
%changelog
|
Loading…
Reference in New Issue
Block a user