summaryrefslogtreecommitdiffstats
path: root/macros/ax_nagios_get_files
blob: f8c5a9b890ebd732a45eb4137ca58a1e6584f155 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
# ===========================================================================
# SYNOPSIS
#
#   AX_NAGIOS_GET_FILES
#
# DESCRIPTION
#
#    This macro figures out which init and/or inetd files to use based
#    on the results of the AX_NAGIOS_GET_OS, AX_NAGIOS_GET_DISTRIB_TYPE,
#    AX_NAGIOS_GET_INIT and AX_NAGIOS_GET_INETD macros. It will select
#    the appropriate files(s) from the 'startup' directory and copy it.
#
# LICENSE
#
#    Copyright (c) 2016 Nagios Core Development Team
#
#   This program is free software; you can redistribute it and/or modify it
#   under the terms of the GNU General Public License as published by the
#   Free Software Foundation; either version 2 of the License, or (at your
#   option) any later version.
#
#   This program is distributed in the hope that it will be useful, but
#   WITHOUT ANY WARRANTY; without even the implied warranty of
#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
#   Public License for more details.
#
#   You should have received a copy of the GNU General Public License along
#   with this program. If not, see <http://www.gnu.org/licenses/>.
#
#   As a special exception, the respective Autoconf Macro's copyright owner
#   gives unlimited permission to copy, distribute and modify the configure
#   scripts that are the output of Autoconf when processing the Macro. You
#   need not follow the terms of the GNU General Public License when using
#   or distributing such scripts, even though portions of the text of the
#   Macro appear in them. The GNU General Public License (GPL) does govern
#   all other use of the material that constitutes the Autoconf Macro.
#
#   This special exception to the GPL applies to versions of the Autoconf
#   Macro released by the Autoconf Archive. When you make and distribute a
#   modified version of the Autoconf Macro, you may extend this special
#   exception to the GPL to apply to your modified version as well.
# ===========================================================================

AU_ALIAS([AC_NAGIOS_GET_FILES], [AX_NAGIOS_GET_FILES])
AC_DEFUN([AX_NAGIOS_GET_FILES],
[

AC_SUBST(src_init)
AC_SUBST(src_inetd)
AC_SUBST(src_tmpfile)
AC_SUBST(bsd_enable)

src_inetd=""
src_init=""
bsd_enable=""

AC_MSG_CHECKING(for which init file to use )

AS_CASE([$init_type],

	[sysv],
		src_init=default-init,

	[systemd],
		src_tmpfile=tmpfile.conf
		src_init=default-service,

	[bsd],
		src_init=bsd-init,

	[newbsd],
		if test $dist_type = freebsd ; then
			bsd_enable="_enable"
			src_init=newbsd-init
		elif test $dist_type = openbsd ; then
			bsd_enable="_flags"
			src_init=openbsd-init
		elif test $dist_type = netbsd ; then
			bsd_enable=""
			src_init=newbsd-init
		fi,

#	[gentoo],

	[openrc],
		src_init=openrc-init,

	[smf*],
		src_init="solaris-init.xml"
		src_inetd="solaris-inetd.xml",

	[upstart],
		if test $dist_type = rh ; then
			src_init=rh-upstart-init
		else
			src_init=upstart-init
		fi,

	[launchd],
		src_init="mac-init.plist",

	[*],
		src_init="unknown"
)
AC_MSG_RESULT($src_init)

AC_MSG_CHECKING(for which inetd files to use )

if test x$src_inetd = x; then

	AS_CASE([$inetd_type],
		[inetd*],
			src_inetd=default-inetd,

		[xinetd],
			src_inetd=default-xinetd,

		[systemd],
			src_inetd=default-socket,

		[launchd],
			src_inetd="mac-inetd.plist",

		[*],
			src_inetd="unknown"
	)

fi
AC_MSG_RESULT($src_inetd)

])