Call exec rather that spawn sub-process because of signals

epel9
Lukas Zapletal 10 years ago
parent aa57ca9677
commit a75fde8e51

@ -19,7 +19,7 @@
Name: puppet Name: puppet
Version: 4.1.0 Version: 4.1.0
Release: 2%{?dist} Release: 3%{?dist}
Summary: A network tool for managing many disparate systems Summary: A network tool for managing many disparate systems
License: ASL 2.0 License: ASL 2.0
URL: http://puppetlabs.com URL: http://puppetlabs.com
@ -389,6 +389,9 @@ exit 0
rm -rf %{buildroot} rm -rf %{buildroot}
%changelog %changelog
* Tue Jul 21 2015 Lukas Zapletal <lzap+rpm@redhat.com> 4.1.0-3
- Puppet agent is started via exec rather than sub-process
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.1.0-2 * Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.1.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild

@ -2,5 +2,7 @@
# #
# This is wrapper script to start puppet which is used to support starting # This is wrapper script to start puppet which is used to support starting
# puppet daemon processes with correct SELinux context. # puppet daemon processes with correct SELinux context.
#
/usr/bin/puppet $* # Call exec rather that spawn sub-process because of signals
exec /usr/bin/puppet $*

Loading…
Cancel
Save