Add initial spec for zaqar
Change-Id: I5128b3c842daed03d9ddf641609c70ae6c30c269
This commit is contained in:
parent
54dfbae016
commit
30843b9008
16
openstack/zaqar/openstack-zaqar-gc.service
Normal file
16
openstack/zaqar/openstack-zaqar-gc.service
Normal file
@ -0,0 +1,16 @@
|
||||
[Unit]
|
||||
Description=OpenStack Zaqar GC
|
||||
After=syslog.target network.target
|
||||
After=mariadb.service postgresql.service rabbitmq-server.service
|
||||
|
||||
[Service]
|
||||
Type=notify
|
||||
User=zaqar
|
||||
Group=zaqar
|
||||
WorkingDirectory=/var/lib/zaqar
|
||||
PrivateTmp=yes
|
||||
ExecStart=/usr/bin/zaqar-gc
|
||||
Restart=on-failure
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
16
openstack/zaqar/openstack-zaqar-server.service
Normal file
16
openstack/zaqar/openstack-zaqar-server.service
Normal file
@ -0,0 +1,16 @@
|
||||
[Unit]
|
||||
Description=OpenStack Zaqar server
|
||||
After=syslog.target network.target
|
||||
After=mariadb.service postgresql.service rabbitmq-server.service
|
||||
|
||||
[Service]
|
||||
Type=notify
|
||||
User=zaqar
|
||||
Group=zaqar
|
||||
WorkingDirectory=/var/lib/zaqar
|
||||
PrivateTmp=yes
|
||||
ExecStart=/usr/bin/zaqar-server
|
||||
Restart=on-failure
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
30
openstack/zaqar/openstack-zaqar.README.config
Normal file
30
openstack/zaqar/openstack-zaqar.README.config
Normal file
@ -0,0 +1,30 @@
|
||||
The main service configuration (/etc/$project/$project.conf) can still be used
|
||||
for configuration but the preferred way is to add config file snippets into
|
||||
/etc/$project/$project.conf.d/ instead.
|
||||
|
||||
As part of the packaging, the package itself installs a config snippet at
|
||||
/etc/$project/$project.conf.d/010-$project.conf with basic configuration. This
|
||||
file should not be modified. In case there is a need to overwrite or add
|
||||
settings, a XXX-$project.conf (XXX being a 3 digit number) should be created
|
||||
instead.
|
||||
|
||||
Config directory file snippet naming should follow these conventions:
|
||||
- snippets should start with "XXX-" where "X" is a number
|
||||
- snippets must end with ".conf"
|
||||
- config management systems (Crowbar, Salt, ...) should use numbers
|
||||
between 100 and 499
|
||||
- users should use numbers starting from 500
|
||||
|
||||
Configuring just a single $program (eg for Nova, $project is "nova" and
|
||||
$program is "nova-api", "nova-compute", "nova-scheduler", ...) can be done
|
||||
in a similar way. The config snippets should be placed in
|
||||
/etc/$project/$program.conf.d/ . The same snippets rules apply here, too.
|
||||
|
||||
$program reads the configuration files in the following order:
|
||||
- /etc/$project/$project.conf
|
||||
- /etc/$project/$project.conf.d/*.conf (lexically sorted)
|
||||
- /etc/$project/$program.conf.d/*.conf (lexically sorted)
|
||||
|
||||
The last configured key overwrites all previous ones. In particular, settings
|
||||
in /etc/$project/$project.conf are overwritten by config values from any file
|
||||
in /etc/$project/$project.conf.d/XXX-$project.conf .
|
3
openstack/zaqar/openstack-zaqar.defaultconf
Normal file
3
openstack/zaqar/openstack-zaqar.defaultconf
Normal file
@ -0,0 +1,3 @@
|
||||
[DEFAULT]
|
||||
log_file = /var/log/zaqar
|
||||
|
11
openstack/zaqar/openstack-zaqar.logrotate
Normal file
11
openstack/zaqar/openstack-zaqar.logrotate
Normal file
@ -0,0 +1,11 @@
|
||||
/var/log/zaqar/*.log {
|
||||
compress
|
||||
rotate 15
|
||||
size 1M
|
||||
dateext
|
||||
missingok
|
||||
notifempty
|
||||
su zaqar zaqar
|
||||
copytruncate
|
||||
sharedscripts
|
||||
}
|
1
openstack/zaqar/openstack-zaqar.tmpfiles
Normal file
1
openstack/zaqar/openstack-zaqar.tmpfiles
Normal file
@ -0,0 +1 @@
|
||||
d /run/zaqar 0700 zaqar zaqar -
|
234
openstack/zaqar/zaqar.spec.j2
Normal file
234
openstack/zaqar/zaqar.spec.j2
Normal file
@ -0,0 +1,234 @@
|
||||
{% set pypi_name = 'zaqar' %}
|
||||
{% set source = fetch_source('https://tarballs.openstack.org/zaqar/zaqar-master.tar.gz') %}
|
||||
{% set upstream_version = upstream_version() %}
|
||||
{% set rpm_release = '1' %}
|
||||
%global with_doc 1
|
||||
%if 0%{?rhel} || 0%{?fedora}
|
||||
%global rdo 1
|
||||
%endif
|
||||
Name: {{ py2name() }}
|
||||
Epoch: {{ epoch('zaqar') }}
|
||||
Version: {{ py2rpmversion() }}
|
||||
Release: {{ py2rpmrelease() }}
|
||||
Summary: OpenStack Message Bus (Zaqar)
|
||||
License: {{ license('Apache-2.0') }}
|
||||
Group: Development/Languages/Python
|
||||
URL: https://launchpad.net/zaqar
|
||||
Source0: {{ source | basename }}
|
||||
Source1: openstack-zaqar.logrotate
|
||||
Source2: openstack-zaqar.tmpfiles
|
||||
Source3: openstack-zaqar.README.config
|
||||
Source4: openstack-zaqar.defaultconf
|
||||
# systemd service files
|
||||
Source5: %{name}-server.service
|
||||
Source6: %{name}-gc.service
|
||||
BuildRequires: openstack-macros
|
||||
BuildRequires: {{ py3('jsonschema') }}
|
||||
BuildRequires: {{ py3('oslo.cache') }}
|
||||
BuildRequires: {{ py3('oslo.config') }}
|
||||
BuildRequires: {{ py3('oslo.log') }}
|
||||
BuildRequires: {{ py3('osprofiler') }}
|
||||
BuildRequires: {{ py3('pbr') }}
|
||||
Requires: python3-{{ pypi_name }} = %{epoch}:%{version}-%{release}
|
||||
BuildArch: noarch
|
||||
%if 0%{?suse_version}
|
||||
BuildRequires: systemd-rpm-macros
|
||||
Requires: pwdutils
|
||||
%{?systemd_requires}
|
||||
%else
|
||||
BuildRequires: systemd
|
||||
Requires(post): systemd
|
||||
Requires(postun): systemd
|
||||
Requires(pre): shadow-utils
|
||||
Requires(preun): systemd
|
||||
%endif
|
||||
|
||||
%description
|
||||
Zaqar is an OpenStack project that provides Identity, Token, Catalog
|
||||
and Policy services for use specifically by projects in the OpenStack
|
||||
family.
|
||||
|
||||
%package -n python3-{{ pypi_name }}
|
||||
Summary: OpenStack Message Bus (Zaqar) - Python module
|
||||
Group: Development/Languages/Python
|
||||
Requires: {{ py3('Babel') }}
|
||||
Requires: {{ py3('WebOb') }}
|
||||
Requires: {{ py3('alembic') }}
|
||||
Requires: {{ py3('falcon') }}
|
||||
Requires: {{ py3('futurist') }}
|
||||
Requires: {{ py3('iso8601') }}
|
||||
Requires: {{ py3('jsonschema') }}
|
||||
Requires: {{ py3('python-keystoneclient') }}
|
||||
Requires: {{ py3('keystonemiddleware') }}
|
||||
Requires: {{ py3('msgpack-python') }}
|
||||
Requires: {{ py3('netaddr') }}
|
||||
Requires: {{ py3('oslo.cache') }}
|
||||
Requires: {{ py3('oslo.config') }}
|
||||
Requires: {{ py3('oslo.context') }}
|
||||
Requires: {{ py3('oslo.db') }}
|
||||
Requires: {{ py3('oslo.i18n') }}
|
||||
Requires: {{ py3('oslo.log') }}
|
||||
Requires: {{ py3('oslo.messaging') }}
|
||||
Requires: {{ py3('oslo.policy') }}
|
||||
Requires: {{ py3('oslo.reports') }}
|
||||
Requires: {{ py3('oslo.serialization') }}
|
||||
Requires: {{ py3('oslo.upgradecheck') }}
|
||||
Requires: {{ py3('oslo.utils') }}
|
||||
Requires: {{ py3('pymongo') }}
|
||||
Requires: {{ py3('python-memcached') }}
|
||||
Requires: {{ py3('requests') }}
|
||||
Requires: {{ py3('six') }}
|
||||
Requires: {{ py3('stevedore') }}
|
||||
|
||||
%description -n python3-zaqar
|
||||
Zaqar is an OpenStack project that provides Identity, Token, Catalog
|
||||
and Policy services for use specifically by projects in the OpenStack
|
||||
family.
|
||||
|
||||
This package contains the core Python module of OpenStack Zaqar.
|
||||
|
||||
%if 0%{?with_doc}
|
||||
%package doc
|
||||
Summary: Openstack Message Bus (Zaqar) - Documentation
|
||||
Group: Documentation/HTML
|
||||
BuildRequires: {{ py3('Sphinx') }}
|
||||
BuildRequires: {{ py3('openstackdocstheme') }}
|
||||
BuildRequires: {{ py3('sphinxcontrib-apidoc') }}
|
||||
|
||||
%description doc
|
||||
Zaqar is an OpenStack project that provides Identity, Token, Catalog
|
||||
and Policy services for use specifically by projects in the OpenStack
|
||||
family.
|
||||
|
||||
This package contains the documentation.
|
||||
%endif
|
||||
|
||||
%package gc
|
||||
Summary: OpenStack Message Bus (Zaqar) - GC
|
||||
Group: System/Management
|
||||
Requires: %{name} = %{epoch}:%{version}-%{release}
|
||||
|
||||
%description gc
|
||||
This package contains the OpenStack Zaqar GC Service.
|
||||
|
||||
%package server
|
||||
Summary: OpenStack Message Bus (Zaqar) - Server
|
||||
Group: System/Management
|
||||
Requires: %{name} = %{epoch}:%{version}-%{release}
|
||||
|
||||
%description server
|
||||
This package contains the OpenStack Zaqar Server Service.
|
||||
|
||||
%prep
|
||||
%autosetup -p1 -n {{ pypi_name }}-{{ upstream_version }}
|
||||
%py_req_cleanup
|
||||
|
||||
%build
|
||||
%{py3_build}
|
||||
|
||||
# documentation
|
||||
%if 0%{?with_doc}
|
||||
PYTHONPATH=. PBR_VERSION={{ upstream_version }} %sphinx_build -b html doc/source doc/build/html
|
||||
# remove the Sphinx-build leftovers
|
||||
rm -rf doc/build/html/.{doctrees,buildinfo}
|
||||
%endif
|
||||
|
||||
%install
|
||||
%{py3_install}
|
||||
|
||||
### directories
|
||||
install -d -m 750 %{buildroot}%{_localstatedir}/{lib,log}/zaqar
|
||||
install -d -m 755 %{buildroot}%{_sysconfdir}/zaqar
|
||||
install -d -m 755 %{buildroot}%{_sysconfdir}/zaqar/zaqar.conf.d/
|
||||
|
||||
install -D -m 644 %{SOURCE2} %{buildroot}/%_tmpfilesdir/%{name}.conf
|
||||
|
||||
# sample config
|
||||
PYTHONPATH=. oslo-config-generator --config-file etc/oslo-config-generator/zaqar.conf --output-file %{buildroot}%{_sysconfdir}/zaqar/zaqar.conf
|
||||
|
||||
### configuration files
|
||||
install -p -D -m 640 %{SOURCE4} %{buildroot}%{_sysconfdir}/zaqar/zaqar.conf.d/010-zaqar.conf
|
||||
install -m 644 etc/logging.conf.sample %{buildroot}%{_sysconfdir}/zaqar/logging.conf
|
||||
install -p -D -m 644 %{SOURCE1} %{buildroot}%{_sysconfdir}/logrotate.d/openstack-zaqar
|
||||
install -p -D -m 640 %{SOURCE3} %{buildroot}%{_sysconfdir}/zaqar/README.config
|
||||
|
||||
# Install systemd unit services
|
||||
install -p -D -m 444 %{SOURCE5} %{buildroot}%{_unitdir}/%{name}-server.service
|
||||
install -p -D -m 444 %{SOURCE6} %{buildroot}%{_unitdir}/%{name}-gc.service
|
||||
|
||||
# install symlinks on SUSE
|
||||
%if 0%{?suse_version}
|
||||
mkdir -p %{buildroot}%{_sbindir} %{buildroot}%{_unitdir}
|
||||
ln -s %{_sbindir}/service %{buildroot}%{_sbindir}/rc%{name}-server
|
||||
ln -s %{_sbindir}/service %{buildroot}%{_sbindir}/rc%{name}-gc
|
||||
%endif
|
||||
|
||||
%pre
|
||||
%openstack_pre_user_group_create zaqar zaqar /sbin/nologin
|
||||
|
||||
%post
|
||||
%tmpfiles_create %{_tmpfilesdir}/zaqar.conf
|
||||
|
||||
%post gc
|
||||
%systemd_post %{name}-gc.service
|
||||
|
||||
%preun gc
|
||||
%systemd_preun %{name}-gc.service
|
||||
|
||||
%postun gc
|
||||
%systemd_postun_with_restart %{name}-gc.service
|
||||
|
||||
%post server
|
||||
%systemd_post %{name}-server.service
|
||||
|
||||
%preun server
|
||||
%systemd_preun %{name}-server.service
|
||||
|
||||
%postun server
|
||||
%systemd_postun_with_restart %{name}-server.service
|
||||
|
||||
%files
|
||||
%doc README.rst
|
||||
%license LICENSE
|
||||
%_tmpfilesdir/%{name}.conf
|
||||
%dir %attr(0750, zaqar, zaqar) %{_localstatedir}/lib/zaqar
|
||||
%dir %attr(0750, zaqar, zaqar) %{_localstatedir}/log/zaqar
|
||||
%dir %attr(0750, root, zaqar) %{_sysconfdir}/zaqar
|
||||
%dir %attr(0750, root, zaqar) %{_sysconfdir}/zaqar/zaqar.conf.d/
|
||||
%config(noreplace) %attr(0640, root, zaqar) %{_sysconfdir}/zaqar/zaqar.conf
|
||||
%config(noreplace) %attr(0640, root, zaqar) %{_sysconfdir}/zaqar/logging.conf
|
||||
%config(noreplace) %attr(0640, root, zaqar) %{_sysconfdir}/zaqar/zaqar.conf.d/010-zaqar.conf
|
||||
%config(noreplace) %{_sysconfdir}/logrotate.d/%{name}
|
||||
%{_sysconfdir}/zaqar/README.config
|
||||
%{_bindir}/zaqar-status
|
||||
%{_bindir}/zaqar-sql-db-manage
|
||||
%{_bindir}/zaqar-bench
|
||||
|
||||
%files -n python3-zaqar
|
||||
%license LICENSE
|
||||
%{python3_sitelib}/zaqar
|
||||
%{python3_sitelib}/zaqar-*.egg-info
|
||||
|
||||
%if 0%{?with_doc}
|
||||
%files doc
|
||||
%license LICENSE
|
||||
%doc doc/build/html
|
||||
%endif
|
||||
|
||||
%files gc
|
||||
%license LICENSE
|
||||
%{_bindir}/zaqar-gc
|
||||
%{_unitdir}/%{name}-gc.service
|
||||
%if 0%{?suse_version}
|
||||
%{_sbindir}/rc%{name}-gc
|
||||
%endif
|
||||
|
||||
%files server
|
||||
%license LICENSE
|
||||
%{_unitdir}/%{name}-server.service
|
||||
%if 0%{?suse_version}
|
||||
%{_sbindir}/rc%{name}-server
|
||||
%endif
|
||||
%{_bindir}/zaqar-server
|
||||
|
||||
%changelog
|
Loading…
Reference in New Issue
Block a user