Skip to content

Commit

Permalink
first round of adding autoconf-macros into core for 4.4.0. testing wo…
Browse files Browse the repository at this point in the history
…uld appreciated by anyone who receives these messages :) -bh
  • Loading branch information
hedenface committed Dec 29, 2017
1 parent 5e11486 commit 5372991
Show file tree
Hide file tree
Showing 13 changed files with 1,420 additions and 126 deletions.
1 change: 1 addition & 0 deletions Changelog
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ ENHANCEMENTS
* New Macro(s) to generate URL for host / service object to be used in notifications (John Frickson)
* enable_page_tour interface option (Bryan Heden)
* Code cleanups in important sections (Workers, Handling Results) (Bryan Heden)
* Automatic mail program detection (with same /bin/mail failback) (Bryan Heden)

FIXES
* Command line macro detection skips potential macros with no ending dollar sign (Bryan Heden, Jake Omann)
Expand Down
11 changes: 8 additions & 3 deletions Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,15 @@ INSTALL_OPTS=@INSTALL_OPTS@
COMMAND_OPTS=@COMMAND_OPTS@
HTTPD_CONF=@HTTPD_CONF@
LN_HTTPD_SITES_ENABLED=@LN_HTTPD_SITES_ENABLED@
INIT_DIR=@init_dir@
INIT_DIR=@initdir@
INIT_OPTS=@INIT_OPTS@
CGICFGDIR=$(CGIDIR)


SRC_INIT=@src_init@
INIT_FILE=@initname@
#INIT_TYPE=@init_type@

USE_EVENTBROKER=@USE_EVENTBROKER@
USE_LIBTAP=@USE_LIBTAP@

Expand Down Expand Up @@ -341,8 +346,8 @@ install-classicui:
install-init: install-daemoninit

install-daemoninit:
$(INSTALL) -m 755 -d $(INIT_OPTS) $(DESTDIR)$(INIT_DIR)
$(INSTALL) -m 755 $(INIT_OPTS) daemon-init $(DESTDIR)$(INIT_DIR)/nagios
$(INSTALL) -m 755 $(INIT_OPTS) startup/$(SRC_INIT) $(INIT_DIR)/$(INIT_FILE)


@echo ""
@echo "*** Init script installed ***"
Expand Down
2 changes: 1 addition & 1 deletion autoconf-macros/ax_nagios_get_paths
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ if test ! -d "$tmpfilesd"; then
else
tmpfilesd="$tmpfilesd/$INIT_PROG.conf"
fi
subsyslockdir=${subsyslockdir="/var/lock/subsys"}
subsyslockdir=${subsyslockdir="/run"}
if test ! -d "$subsyslockdir"; then
subsyslockdir="N/A"
subsyslockfile="N/A"
Expand Down
Loading

0 comments on commit 5372991

Please sign in to comment.