Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
packaging
rpm-icingaweb2-module-reporting
Commits
89d7d3ef
Commit
89d7d3ef
authored
Sep 09, 2019
by
Markus Frosch
Browse files
Use correct username for service
parent
a49f79f1
Pipeline
#22506
failed with stages
in 42 seconds
Changes
2
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
icinga-reporting.service
View file @
89d7d3ef
...
...
@@ -3,7 +3,7 @@ Description=Icinga Reporting Scheduler
[Service]
Type
=
simple
User
=
icingaweb2
User
=
apache
ExecStart
=
/usr/bin/icingacli reporting schedule run
Restart
=
on-success
...
...
icingaweb2-module-reporting.spec
View file @
89d7d3ef
...
...
@@ -20,6 +20,12 @@ BuildArch: noarch
%global basedir %{_datadir}/icingaweb2/modules/%{module_name}
%global service_name icinga-%{module_name}
%if "%{_vendor}" == "suse"
%global service_user wwwrun
%else # suse
%global service_user apache
%endif # suse
BuildRequires: systemd-devel
Requires: systemd
...
...
@@ -55,6 +61,9 @@ cp -r * %{buildroot}%{basedir}
install -d %{buildroot}%{_unitdir}
install -m 0644 %{SOURCE1} %{buildroot}%{_unitdir}/%{service_name}.service
# Replace user in service unit
sed -i -e 's~^User=.*~User=%{service_user}~' %{buildroot}%{_unitdir}/%{service_name}.service
%if "%{_vendor}" == "suse"
install -d %{buildroot}%{_sbindir}
ln -sf /usr/sbin/service %{buildroot}%{_sbindir}/rc%{service_name}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment