summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoe Orton <jorton@redhat.com>2012-07-02 11:20:02 +0100
committerJoe Orton <jorton@redhat.com>2012-07-02 11:20:02 +0100
commit99146f2b3cd2408a6cc98145ec7fe080f2ab3458 (patch)
tree66277f3a7f77de7c40591cf3a0baa2bc276b6366
parent0ab4593d9ccc24048edc81834748a3adae695b15 (diff)
downloadhttpd-99146f2b3cd2408a6cc98145ec7fe080f2ab3458.tar.gz
httpd-99146f2b3cd2408a6cc98145ec7fe080f2ab3458.tar.xz
httpd-99146f2b3cd2408a6cc98145ec7fe080f2ab3458.zip
support "configtest" and "graceful" as initscripts "legacy actions"
-rw-r--r--action-configtest.sh2
-rw-r--r--action-graceful.sh2
-rw-r--r--httpd.spec33
3 files changed, 29 insertions, 8 deletions
diff --git a/action-configtest.sh b/action-configtest.sh
new file mode 100644
index 0000000..6685b0a
--- /dev/null
+++ b/action-configtest.sh
@@ -0,0 +1,2 @@
+#!/bin/sh
+exec /sbin/apachectl configtest "$@"
diff --git a/action-graceful.sh b/action-graceful.sh
new file mode 100644
index 0000000..3d28f0e
--- /dev/null
+++ b/action-graceful.sh
@@ -0,0 +1,2 @@
+#!/bin/sh
+exec /sbin/apachectl -k graceful "$@"
diff --git a/httpd.spec b/httpd.spec
index 5caad7d..c4ac54e 100644
--- a/httpd.spec
+++ b/httpd.spec
@@ -8,15 +8,17 @@
Summary: Apache HTTP Server
Name: httpd
Version: 2.4.2
-Release: 18%{?dist}
+Release: 19%{?dist}
URL: http://httpd.apache.org/
Source0: http://www.apache.org/dist/httpd/httpd-%{version}.tar.bz2
Source1: index.html
-Source3: httpd.logrotate
-Source5: httpd.sysconf
-Source6: httpd-ssl-pass-dialog
-Source7: httpd.tmpfiles
-Source8: httpd.service
+Source2: httpd.logrotate
+Source3: httpd.sysconf
+Source4: httpd-ssl-pass-dialog
+Source5: httpd.tmpfiles
+Source6: httpd.service
+Source7: action-graceful.sh
+Source8: action-configtest.sh
Source10: httpd.conf
Source11: 00-base.conf
Source12: 00-mpm.conf
@@ -67,6 +69,8 @@ Requires(pre): /usr/sbin/useradd
Requires(preun): systemd-units
Requires(postun): systemd-units
Requires(post): systemd-units
+# For legacy-actions:
+Requires: initscripts >= 9.39
%description
The Apache HTTP Server is a powerful, efficient, and extensible
@@ -340,9 +344,16 @@ ln -s /run/httpd $RPM_BUILD_ROOT/etc/httpd/run
ln -s ../..%{_libdir}/httpd/modules $RPM_BUILD_ROOT/etc/httpd/modules
# install http-ssl-pass-dialog
-mkdir -p $RPM_BUILD_ROOT/%{_libexecdir}
+mkdir -p $RPM_BUILD_ROOT%{_libexecdir}
install -m755 $RPM_SOURCE_DIR/httpd-ssl-pass-dialog \
- $RPM_BUILD_ROOT/%{_libexecdir}/httpd-ssl-pass-dialog
+ $RPM_BUILD_ROOT%{_libexecdir}/httpd-ssl-pass-dialog
+
+# Install action scripts
+mkdir -p $RPM_BUILD_ROOT%{_libexecdir}/initscripts/legacy-actions/httpd
+for f in graceful configtest; do
+ install -p -m 755 $RPM_SOURCE_DIR/action-${f}.sh \
+ $RPM_BUILD_ROOT%{_libexecdir}/initscripts/legacy-actions/httpd/${f}
+done
# Install logrotate config
mkdir -p $RPM_BUILD_ROOT/etc/logrotate.d
@@ -487,6 +498,9 @@ rm -rf $RPM_BUILD_ROOT
%config(noreplace) %{_sysconfdir}/sysconfig/httpd
%{_prefix}/lib/tmpfiles.d/httpd.conf
+%dir %{_libexecdir}/initscripts/legacy-actions/httpd
+%{_libexecdir}/initscripts/legacy-actions/httpd/*
+
%{_sbindir}/ht*
%{_sbindir}/fcgistarter
%{_sbindir}/apachectl
@@ -567,6 +581,9 @@ rm -rf $RPM_BUILD_ROOT
%{_sysconfdir}/rpm/macros.httpd
%changelog
+* Mon Jul 2 2012 Joe Orton <jorton@redhat.com> - 2.4.2-19
+- support "configtest" and "graceful" as initscripts "legacy actions"
+
* Fri Jun 8 2012 Joe Orton <jorton@redhat.com> - 2.4.2-18
- avoid use of "core" GIF for a "core" directory (#168776)
- drop use of "syslog.target" in systemd unit file