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:
parent
232d359cbb
commit
7bb154f768
|
@ -650,6 +650,8 @@ AC_CONFIG_FILES([
|
|||
doc/asio_http2_client.h.rst
|
||||
doc/contribute.rst
|
||||
contrib/Makefile
|
||||
contrib/nghttpx-init.template
|
||||
contrib/nghttpx.service.template
|
||||
])
|
||||
AC_OUTPUT
|
||||
|
||||
|
|
|
@ -1 +1,5 @@
|
|||
nghttpx-init
|
||||
nghttpx-init.template
|
||||
nghttpx.service
|
||||
nghttpx.service.template
|
||||
|
||||
|
|
|
@ -21,19 +21,18 @@
|
|||
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||
# 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
|
||||
$(edit) $(srcdir)/$@.in > $@.tmp
|
||||
$(edit) $< > $@.tmp
|
||||
chmod +x $@.tmp
|
||||
mv $@.tmp $@
|
||||
|
||||
nghttpx-init: $(srcdir)/nghttpx-init.in
|
||||
|
||||
all-local: nghttpx-init
|
||||
all-local: nghttpx-init nghttpx.service
|
||||
|
||||
clean-local:
|
||||
-rm -f nghttpx-init nghttpx-init.tmp
|
||||
-rm -f nghttpx-init nghttpx-init.tmp nghttpx.service nghttpx.service.tmp
|
||||
|
|
|
@ -17,8 +17,8 @@
|
|||
PATH=/sbin:/usr/sbin:/bin:/usr/bin:/usr/local/bin
|
||||
DESC="HTTP/2 reverse proxy"
|
||||
NAME=nghttpx
|
||||
# Depending on the configuration, binary may be located under @sbindir@
|
||||
DAEMON=@bindir@/$NAME
|
||||
# Depending on the configuration, binary may be located under $(bindir)
|
||||
DAEMON=$(bindir)/$NAME
|
||||
PIDFILE=/var/run/$NAME.pid
|
||||
DAEMON_ARGS="--conf /etc/nghttpx/nghttpx.conf --pid-file=$PIDFILE"
|
||||
SCRIPTNAME=/etc/init.d/$NAME
|
|
@ -4,7 +4,7 @@ After=network.target
|
|||
|
||||
[Service]
|
||||
Type=simple
|
||||
ExecStart=/usr/bin/nghttpx --errorlog-syslog
|
||||
ExecStart=$(bindir)/nghttpx --errorlog-syslog
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
Loading…
Reference in New Issue