Substitute bindir for nghttpx.service

Use static pattern rules to use same recipe for nghttpx-init and
nghttpx.service.

Also rewrite how to produce nghttpx
This commit is contained in:
Tatsuhiro Tsujikawa 2015-05-06 12:01:29 +09:00
parent 232d359cbb
commit 7bb154f768
5 changed files with 16 additions and 11 deletions

View File

@ -650,6 +650,8 @@ AC_CONFIG_FILES([
doc/asio_http2_client.h.rst doc/asio_http2_client.h.rst
doc/contribute.rst doc/contribute.rst
contrib/Makefile contrib/Makefile
contrib/nghttpx-init.template
contrib/nghttpx.service.template
]) ])
AC_OUTPUT AC_OUTPUT

4
contrib/.gitignore vendored
View File

@ -1 +1,5 @@
nghttpx-init nghttpx-init
nghttpx-init.template
nghttpx.service
nghttpx.service.template

View File

@ -21,19 +21,18 @@
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
EXTRA_DIST = nghttpx-init.in nghttpx.service nghttpx-logrotate EXTRA_DIST = nghttpx-init.template.in nghttpx.service.template.in \
nghttpx-logrotate
edit = sed -e 's|@bindir[@]|$(bindir)|g' edit = sed -e 's|$$(bindir)|$(bindir)|g'
nghttpx-init: Makefile nghttpx-init nghttpx.service: %: $(srcdir)/%.template
rm -f $@ $@.tmp rm -f $@ $@.tmp
$(edit) $(srcdir)/$@.in > $@.tmp $(edit) $< > $@.tmp
chmod +x $@.tmp chmod +x $@.tmp
mv $@.tmp $@ mv $@.tmp $@
nghttpx-init: $(srcdir)/nghttpx-init.in all-local: nghttpx-init nghttpx.service
all-local: nghttpx-init
clean-local: clean-local:
-rm -f nghttpx-init nghttpx-init.tmp -rm -f nghttpx-init nghttpx-init.tmp nghttpx.service nghttpx.service.tmp

View File

@ -17,8 +17,8 @@
PATH=/sbin:/usr/sbin:/bin:/usr/bin:/usr/local/bin PATH=/sbin:/usr/sbin:/bin:/usr/bin:/usr/local/bin
DESC="HTTP/2 reverse proxy" DESC="HTTP/2 reverse proxy"
NAME=nghttpx NAME=nghttpx
# Depending on the configuration, binary may be located under @sbindir@ # Depending on the configuration, binary may be located under $(bindir)
DAEMON=@bindir@/$NAME DAEMON=$(bindir)/$NAME
PIDFILE=/var/run/$NAME.pid PIDFILE=/var/run/$NAME.pid
DAEMON_ARGS="--conf /etc/nghttpx/nghttpx.conf --pid-file=$PIDFILE" DAEMON_ARGS="--conf /etc/nghttpx/nghttpx.conf --pid-file=$PIDFILE"
SCRIPTNAME=/etc/init.d/$NAME SCRIPTNAME=/etc/init.d/$NAME

View File

@ -4,7 +4,7 @@ After=network.target
[Service] [Service]
Type=simple Type=simple
ExecStart=/usr/bin/nghttpx --errorlog-syslog ExecStart=$(bindir)/nghttpx --errorlog-syslog
[Install] [Install]
WantedBy=multi-user.target WantedBy=multi-user.target