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-x509
Commits
3a0ce44e
Commit
3a0ce44e
authored
Sep 09, 2019
by
Markus Frosch
Browse files
Use correct username for service
parent
2d4827d3
Pipeline
#22494
failed with stages
in 2 minutes and 1 second
Changes
2
Pipelines
3
Show whitespace changes
Inline
Side-by-side
icinga-x509.service
View file @
3a0ce44e
...
...
@@ -3,7 +3,7 @@ Description=Icinga Certificate Monitoring Module Jobs Runner
[Service]
Type
=
simple
User
=
icingaweb2
User
=
apache
ExecStart
=
/usr/bin/icingacli x509 jobs run
Restart
=
on-success
...
...
icingaweb2-module-x509.spec
View file @
3a0ce44e
...
...
@@ -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
...
...
@@ -58,6 +64,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