Modsecurity module added to Nginx. Archive directory created
This commit is contained in:
603
fedora/SPECS/archive/icinga.spec
Normal file
603
fedora/SPECS/archive/icinga.spec
Normal file
@@ -0,0 +1,603 @@
|
||||
# $Id$
|
||||
# Authority: cmr
|
||||
# Upstream: The icinga devel team <icinga-devel at lists.icinga.org>
|
||||
#
|
||||
# Needs libdbi
|
||||
#
|
||||
# ExclusiveDist: el5 el6
|
||||
|
||||
%define revision 0
|
||||
|
||||
%define logmsg logger -t %{name}/rpm
|
||||
|
||||
%define logdir %{_localstatedir}/log/%{name}
|
||||
%define spooldir %{_localstatedir}/spool/%{name}
|
||||
%define plugindir %{_libdir}/nagios/plugins
|
||||
|
||||
%if "%{_vendor}" == "suse"
|
||||
%define apacheuser wwwrun
|
||||
%define apachegroup www
|
||||
%define apachename apache2
|
||||
%define apacheconfdir %{_sysconfdir}/%{apachename}/conf.d
|
||||
%define extcmdfile %{_localstatedir}/icinga/rw/icinga.cmd
|
||||
%define extcmdfiledir %{_localstatedir}/icinga/rw
|
||||
%define readme README.SUSE
|
||||
%define readmeido README.SUSE.idoutils
|
||||
%endif
|
||||
%if "%{_vendor}" == "redhat"
|
||||
%define apachename httpd
|
||||
%define apacheconfdir %{_sysconfdir}/%{apachename}/conf.d
|
||||
%define apacheuser apache
|
||||
%define apachegroup apache
|
||||
%define extcmdfile %{_localstatedir}/spool/icinga/cmd/icinga.cmd
|
||||
%define extcmdfiledir %{_localstatedir}/spool/icinga/cmd
|
||||
%define readme README.RHEL
|
||||
%define readmeido README.RHEL.idoutils
|
||||
%endif
|
||||
|
||||
# Systemd support for Fedora >= 15
|
||||
%if 0%{?fedora} >= 15
|
||||
%define using_systemd 1
|
||||
%else
|
||||
%define using_sysvinit 1
|
||||
%endif
|
||||
|
||||
# Check to see if we're allowed to use macroized systemd scriptlets, as
|
||||
# introduced in Fedora 18.
|
||||
%if 0%{?using_systemd}
|
||||
%if 0%{?fedora} >= 18
|
||||
%define systemd_macro_scriptlet 1
|
||||
%else
|
||||
%define systemd_macro_scriptlet 0
|
||||
%endif # Fedora >= 18
|
||||
%endif # using_systemd
|
||||
|
||||
Summary: Open Source host, service and network monitoring program
|
||||
Name: icinga
|
||||
Version: 1.13.3
|
||||
Release: %{revision}%{?dist}
|
||||
License: GPLv2
|
||||
Group: Applications/System
|
||||
URL: http://www.icinga.org/
|
||||
|
||||
Source0: https://github.com/Icinga/icinga-core/releases/download/v%{version}/icinga-%{version}.tar.gz
|
||||
Patch0: icinga-ido2db-systemd.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
|
||||
|
||||
%if "%{_vendor}" == "redhat"
|
||||
Requires(pre): shadow-utils
|
||||
%endif
|
||||
|
||||
%if 0%{?using_systemd}
|
||||
Requires(post): systemd-units
|
||||
Requires(preun): systemd-units
|
||||
Requires(postun): systemd-units
|
||||
%endif
|
||||
|
||||
BuildRequires: gcc
|
||||
BuildRequires: gd-devel > 1.8
|
||||
BuildRequires: zlib-devel
|
||||
BuildRequires: libpng-devel
|
||||
BuildRequires: libjpeg-devel
|
||||
BuildRequires: libdbi-devel
|
||||
BuildRequires: perl(ExtUtils::Embed)
|
||||
BuildRequires: make
|
||||
### Requires: nagios-plugins
|
||||
BuildRequires: %{apachename}
|
||||
%if "%{_vendor}" == "suse"
|
||||
BuildRequires: libopenssl-devel
|
||||
%endif
|
||||
|
||||
|
||||
|
||||
%description
|
||||
Icinga is an application, system and network monitoring application.
|
||||
It can escalate problems by email, pager or any other medium. It is
|
||||
also useful for incident or SLA reporting.
|
||||
|
||||
Icinga is written in C and is designed as a background process,
|
||||
intermittently running checks on various services that you specify.
|
||||
|
||||
The actual service checks are performed by separate "plugin" programs
|
||||
which return the status of the checks to Icinga.
|
||||
|
||||
Icinga is a fork of the nagios project.
|
||||
|
||||
%package gui
|
||||
Summary: Classic UI for %{name}
|
||||
Group: Applications/System
|
||||
Requires: %{apachename}
|
||||
Requires: %{name}-doc = %{version}-%{release}
|
||||
Requires: %{name}-classicui-config = %{version}-%{release}
|
||||
|
||||
%description gui
|
||||
This package contains the Classic UI for %{name}. Requires %{name}-doc
|
||||
for the documentation module.
|
||||
|
||||
%package gui-config
|
||||
Summary: Classic UI configuration for %{name}
|
||||
Group: Applications/System
|
||||
Requires: %{apachename}
|
||||
Provides: %{name}-classicui-config
|
||||
Conflicts: icinga2-classicui-config
|
||||
|
||||
%description gui-config
|
||||
This packages contains the classic ui configuration for %{name}.
|
||||
|
||||
|
||||
%package devel
|
||||
Summary: Provides include files that Icinga-related applications may compile against
|
||||
Group: Development/Libraries
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
|
||||
%description devel
|
||||
This package provides include files that Icinga-related applications
|
||||
may compile against.
|
||||
|
||||
%package idoutils
|
||||
Summary: transitional package, use idoutils-libdbi-* instead
|
||||
Group: Applications/System
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
Requires: %{name}-idoutils-libdbi-mysql = %{version}-%{release}
|
||||
|
||||
%description idoutils
|
||||
Transitional package. Idoutils has been splitted into
|
||||
idoutils-libdbi-mysql and idoutils-libdbi-pgsql. Use one
|
||||
of these. This package pulls in idoutils-libdbi-mysql.
|
||||
This package can be safely uninstalled, it provides no
|
||||
files and nothing depends on it.
|
||||
|
||||
%package idoutils-libdbi-mysql
|
||||
Summary: database broker module for %{name}
|
||||
Group: Applications/System
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
%if 0%{?suse_version} >= 1210
|
||||
# opensuse
|
||||
Requires: libdbi-drivers-dbd-mysql
|
||||
%else
|
||||
Requires: libdbi-dbd-mysql
|
||||
%endif
|
||||
Conflicts: %{name}-idoutils-libdbi-pgsql
|
||||
|
||||
%description idoutils-libdbi-mysql
|
||||
This package contains the idoutils broker module for %{name} which provides
|
||||
database storage via libdbi and mysql.
|
||||
|
||||
%package idoutils-libdbi-pgsql
|
||||
Summary: database broker module for %{name}
|
||||
Group: Applications/System
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
%if 0%{?suse_version} >= 1210
|
||||
# opensuse
|
||||
Requires: libdbi-drivers-dbd-pgsql
|
||||
%else
|
||||
Requires: libdbi-dbd-pgsql
|
||||
%endif
|
||||
Conflicts: %{name}-idoutils-libdbi-mysql
|
||||
|
||||
%description idoutils-libdbi-pgsql
|
||||
This package contains the idoutils broker module for %{name} which provides
|
||||
database storage via libdbi and pgsql.
|
||||
|
||||
|
||||
%package doc
|
||||
Summary: documentation %{name}
|
||||
Group: Documentation
|
||||
|
||||
%description doc
|
||||
Documentation for %{name}
|
||||
|
||||
|
||||
%prep
|
||||
%setup -qn %{name}-%{version}
|
||||
%patch0
|
||||
|
||||
cat << EOF > README.idoutils.transitional
|
||||
Transitional package. Idoutils has been splitted into
|
||||
idoutils-libdbi-mysql and idoutils-libdbi-pgsql. Use one
|
||||
of these. This package pulls in idoutils-libdbi-mysql.
|
||||
This package can be safely uninstalled, it provides no
|
||||
files and nothing depends on it.
|
||||
EOF
|
||||
|
||||
%build
|
||||
%configure \
|
||||
--prefix=%{_datadir}/%{name} \
|
||||
--exec-prefix=%{_localstatedir}/lib/%{name} \
|
||||
--datadir="%{_datadir}/%{name}" \
|
||||
--datarootdir="%{_datadir}/%{name}" \
|
||||
--libexecdir="%{plugindir}" \
|
||||
--localstatedir="%{_localstatedir}/%{name}" \
|
||||
--libdir="%{_libdir}/%{name}" \
|
||||
--sbindir="%{_libdir}/%{name}/cgi" \
|
||||
--sysconfdir="%{_sysconfdir}/%{name}" \
|
||||
--with-gd-lib="%{_libdir}" \
|
||||
--with-gd-inc="%{_includedir}" \
|
||||
--with-htmurl="/icinga" \
|
||||
--with-cgiurl="/%{name}/cgi-bin" \
|
||||
--with-mainurl="/%{name}/cgi-bin/status.cgi?host=all&type=detail&servicestatustypes=29" \
|
||||
--with-init-dir="%{_initrddir}" \
|
||||
--with-lockfile="%{_localstatedir}/run/%{name}.pid" \
|
||||
--with-mail="/bin/mail" \
|
||||
--with-icinga-user="icinga" \
|
||||
--with-icinga-group="icinga" \
|
||||
--enable-event-broker \
|
||||
--enable-embedded-perl \
|
||||
--enable-idoutils \
|
||||
--with-httpd-conf=%{apacheconfdir} \
|
||||
--with-log-dir=%{logdir} \
|
||||
--enable-cgi-log \
|
||||
--with-cgi-log-dir=%{logdir}/gui \
|
||||
--with-plugin-dir="%{plugindir}" \
|
||||
--with-eventhandler-dir="%{_libdir}/%{name}/eventhandlers" \
|
||||
--with-p1-file-dir="%{_libdir}/%{name}" \
|
||||
--with-checkresult-dir="%{spooldir}/checkresults" \
|
||||
--with-ext-cmd-file-dir="%{extcmdfiledir}" \
|
||||
--with-http-auth-file="%{_sysconfdir}/%{name}/passwd" \
|
||||
--with-icinga-chkfile="%{spooldir}/icinga.chk" \
|
||||
--with-ido2db-lockfile="%{_localstatedir}/run/ido2db.pid" \
|
||||
--with-ido-sockfile="%{spooldir}/ido.sock" \
|
||||
--with-idomod-tmpfile="%{spooldir}/idomod.tmp" \
|
||||
--with-state-dir="%{spooldir}"
|
||||
|
||||
%{__make} %{?_smp_mflags} all
|
||||
|
||||
%install
|
||||
%{__rm} -rf %{buildroot}
|
||||
%{__mkdir} -p %{buildroot}/%{apacheconfdir}
|
||||
|
||||
# Our make install invocation will differ depending on whether or not we're
|
||||
# using systemd.
|
||||
# without: make ... install-init ...
|
||||
# with: make ... install-systemd ...
|
||||
%if 0%{?using_systemd}
|
||||
%define init_install systemd
|
||||
%else
|
||||
%define init_install init
|
||||
%endif
|
||||
|
||||
%{__make} install-unstripped \
|
||||
install-%{init_install} \
|
||||
install-commandmode \
|
||||
install-config \
|
||||
install-webconf \
|
||||
install-idoutils \
|
||||
install-eventhandlers \
|
||||
install-downtimes \
|
||||
DESTDIR="%{buildroot}" \
|
||||
INSTALL_OPTS="" \
|
||||
INSTALL_OPTS_WEB="" \
|
||||
COMMAND_OPTS="" \
|
||||
INIT_OPTS=""
|
||||
|
||||
### strip binary
|
||||
%{__strip} %{buildroot}%{_bindir}/{icinga,icingastats,log2ido,ido2db}
|
||||
%{__strip} %{buildroot}%{_libdir}/icinga/cgi/*.cgi
|
||||
|
||||
### move idoutils sample configs to final name
|
||||
mv %{buildroot}%{_sysconfdir}/icinga/ido2db.cfg-sample %{buildroot}%{_sysconfdir}/icinga/ido2db.cfg
|
||||
mv %{buildroot}%{_sysconfdir}/icinga/idomod.cfg-sample %{buildroot}%{_sysconfdir}/icinga/idomod.cfg
|
||||
mv %{buildroot}%{_sysconfdir}/icinga/modules/idoutils.cfg-sample %{buildroot}%{_sysconfdir}/icinga/modules/idoutils.cfg
|
||||
|
||||
### remove icinga-api
|
||||
%{__rm} -rf %{buildroot}%{_datadir}/icinga/icinga-api
|
||||
|
||||
# install logrotate rule
|
||||
install -D -m 0644 icinga.logrotate %{buildroot}%{_sysconfdir}/logrotate.d/%{name}
|
||||
|
||||
# install sample htpasswd file
|
||||
install -D -m 0644 icinga.htpasswd %{buildroot}%{_sysconfdir}/%{name}/passwd
|
||||
|
||||
# install headers for development package
|
||||
install -d -m0755 "%{buildroot}%{_includedir}/%{name}/"
|
||||
install -m0644 include/*.h "%{buildroot}%{_includedir}/%{name}"
|
||||
|
||||
# create perfdata dir by default
|
||||
install -d -m0755 "%{buildroot}%{_localstatedir}/spool/%{name}/perfdata"
|
||||
|
||||
%pre
|
||||
# Add icinga user
|
||||
%{_sbindir}/groupadd -r icinga 2> /dev/null || :
|
||||
%{_sbindir}/groupadd -r icingacmd 2> /dev/null || :
|
||||
%{_sbindir}/useradd -c "icinga" -s /sbin/nologin -r -d %{_localstatedir}/spool/%{name} -G icingacmd -g icinga icinga 2> /dev/null || :
|
||||
|
||||
|
||||
%post
|
||||
|
||||
%if 0%{?using_systemd}
|
||||
%if 0%{?systemd_macro_scriptlet}
|
||||
%systemd_post icinga.service
|
||||
%else
|
||||
# manual systemd scriptlet
|
||||
if [ $1 -eq 1 ] ; then
|
||||
# Initial installation
|
||||
/bin/systemctl daemon-reload >/dev/null 2>&1 || :
|
||||
fi
|
||||
%endif
|
||||
%else
|
||||
# No systemd, just plain old sysvinit
|
||||
/sbin/chkconfig --add icinga
|
||||
%endif
|
||||
|
||||
# restart httpd for auth change
|
||||
/sbin/service %{apachename} condrestart > /dev/null 2>&1 || :
|
||||
|
||||
# start icinga
|
||||
/sbin/service icinga start &>/dev/null || :
|
||||
|
||||
%preun
|
||||
|
||||
%if 0%{?using_systemd}
|
||||
%if 0%{?systemd_macro_scriptlet}
|
||||
%systemd_preun icinga.service
|
||||
%else
|
||||
if [ $1 -eq 0 ]; then
|
||||
# manual systemd scriptlet
|
||||
# Package removal, not upgrade
|
||||
/bin/systemctl --no-reload disable icinga.service > /dev/null 2>&1 || :
|
||||
/bin/systemctl stop icinga.service > /dev/null 2>&1 || :
|
||||
fi
|
||||
%endif
|
||||
%else
|
||||
if [ $1 -eq 0 ]; then
|
||||
# No systemd, just plain old sysvinit
|
||||
/sbin/service icinga stop &>/dev/null || :
|
||||
/sbin/chkconfig --del icinga
|
||||
fi
|
||||
%endif
|
||||
|
||||
%postun
|
||||
/sbin/service %{apachename} condrestart > /dev/null 2>&1 || :
|
||||
|
||||
%pre gui
|
||||
# Add apacheuser in the icingacmd group
|
||||
# If the group exists, add the apacheuser in the icingacmd group.
|
||||
# It is not neccessary that icinga-cgi is installed on the same system as
|
||||
# icinga 1.x and only on systems with icinga installed the icingacmd
|
||||
# group exists.
|
||||
getent group icingacmd > /dev/null
|
||||
|
||||
if [ $? -eq 0 ]; then
|
||||
%if "%{_vendor}" == "suse"
|
||||
%{_sbindir}/usermod -G icingacmd %{apacheuser}
|
||||
%else
|
||||
%{_sbindir}/usermod -a -G icingacmd %{apacheuser}
|
||||
%endif
|
||||
fi
|
||||
|
||||
%post idoutils-libdbi-mysql
|
||||
|
||||
%if 0%{?using_systemd}
|
||||
%if 0%{?systemd_macro_scriptlet}
|
||||
%systemd_post ido2db.service
|
||||
%else
|
||||
# manual systemd scriptlet
|
||||
if [ $1 -eq 1 ] ; then
|
||||
# Initial installation
|
||||
/bin/systemctl daemon-reload >/dev/null 2>&1 || :
|
||||
fi
|
||||
%endif
|
||||
%else
|
||||
# No systemd, just plain old sysvinit
|
||||
/sbin/chkconfig --add ido2db
|
||||
%endif
|
||||
|
||||
%logmsg "idoutils-libdbi-mysql installed. don't forget to install/upgrade db schema, check %{readmeido}"
|
||||
|
||||
%preun idoutils-libdbi-mysql
|
||||
|
||||
%if 0%{?using_systemd}
|
||||
%if 0%{?systemd_macro_scriptlet}
|
||||
%systemd_preun ido2db.service
|
||||
%else
|
||||
if [ $1 -eq 0 ]; then
|
||||
# manual systemd scriptlet
|
||||
# Package removal, not upgrade
|
||||
/bin/systemctl --no-reload disable ido2db.service > /dev/null 2>&1 || :
|
||||
/bin/systemctl stop ido2db.service > /dev/null 2>&1 || :
|
||||
fi
|
||||
%endif
|
||||
%else
|
||||
if [ $1 -eq 0 ]; then
|
||||
# No systemd, just plain old sysvinit
|
||||
/sbin/service ido2db stop &>/dev/null || :
|
||||
/sbin/chkconfig --del ido2db
|
||||
fi
|
||||
%endif
|
||||
|
||||
%post idoutils-libdbi-pgsql
|
||||
|
||||
%if 0%{?using_systemd}
|
||||
%if 0%{?systemd_macro_scriptlet}
|
||||
%systemd_post ido2db.service
|
||||
%else
|
||||
# manual systemd scriptlet
|
||||
if [ $1 -eq 1 ] ; then
|
||||
# Initial installation
|
||||
/bin/systemctl daemon-reload >/dev/null 2>&1 || :
|
||||
fi
|
||||
%endif
|
||||
%else
|
||||
# No systemd, just plain old sysvinit
|
||||
/sbin/chkconfig --add ido2db
|
||||
%endif
|
||||
|
||||
### change ido2db.cfg to match pgsql config
|
||||
# check if this is an upgrade
|
||||
if [ $1 -eq 2 ]
|
||||
then
|
||||
%{__cp} %{_sysconfdir}/icinga/ido2db.cfg %{_sysconfdir}/icinga/ido2db.cfg.pgsql
|
||||
%{__perl} -pi -e '
|
||||
s|db_servertype=mysql|db_servertype=pgsql|;
|
||||
s|db_port=3306|db_port=5432|;
|
||||
' %{_sysconfdir}/icinga/ido2db.cfg.pgsql
|
||||
%logmsg "Warning: upgrade, pgsql config written to ido2db.cfg.pgsql"
|
||||
fi
|
||||
# install
|
||||
if [ $1 -eq 1 ]
|
||||
then
|
||||
%{__perl} -pi -e '
|
||||
s|db_servertype=mysql|db_servertype=pgsql|;
|
||||
s|db_port=3306|db_port=5432|;
|
||||
' %{_sysconfdir}/icinga/ido2db.cfg
|
||||
fi
|
||||
|
||||
%logmsg "idoutils-libdbi-pgsql installed. don't forget to install/upgrade db schema, check %{readmeido}"
|
||||
|
||||
|
||||
%preun idoutils-libdbi-pgsql
|
||||
|
||||
%if 0%{?using_systemd}
|
||||
%if 0%{?systemd_macro_scriptlet}
|
||||
%systemd_preun ido2db.service
|
||||
%else
|
||||
if [ $1 -eq 0 ]; then
|
||||
# manual systemd scriptlet
|
||||
# Package removal, not upgrade
|
||||
/bin/systemctl --no-reload disable ido2db.service > /dev/null 2>&1 || :
|
||||
/bin/systemctl stop ido2db.service > /dev/null 2>&1 || :
|
||||
fi
|
||||
%endif
|
||||
%else
|
||||
if [ $1 -eq 0 ]; then
|
||||
# No systemd, just plain old sysvinit
|
||||
/sbin/service ido2db stop &>/dev/null || :
|
||||
/sbin/chkconfig --del ido2db
|
||||
fi
|
||||
%endif
|
||||
|
||||
|
||||
%clean
|
||||
%{__rm} -rf %{buildroot}
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%doc README.md LICENSE Changelog UPGRADING %{readme}
|
||||
%if 0%{?using_systemd}
|
||||
%attr(755,-,-) %{_unitdir}/icinga.service
|
||||
%attr(644,-,-) %{_sysconfdir}/sysconfig/icinga
|
||||
%else
|
||||
%attr(755,-,-) %{_initrddir}/icinga
|
||||
%endif
|
||||
%dir %{_sysconfdir}/%{name}
|
||||
%dir %{_sysconfdir}/%{name}/modules
|
||||
%config(noreplace) %{_sysconfdir}/%{name}/icinga.cfg
|
||||
%dir %{_sysconfdir}/%{name}/objects
|
||||
%dir %{_sysconfdir}/%{name}/conf.d
|
||||
%config(noreplace) %{_sysconfdir}/%{name}/objects/commands.cfg
|
||||
%config(noreplace) %{_sysconfdir}/%{name}/objects/contacts.cfg
|
||||
%config(noreplace) %{_sysconfdir}/%{name}/objects/notifications.cfg
|
||||
%config(noreplace) %{_sysconfdir}/%{name}/objects/localhost.cfg
|
||||
%config(noreplace) %{_sysconfdir}/%{name}/objects/printer.cfg
|
||||
%config(noreplace) %{_sysconfdir}/%{name}/objects/switch.cfg
|
||||
%config(noreplace) %{_sysconfdir}/%{name}/objects/templates.cfg
|
||||
%config(noreplace) %{_sysconfdir}/%{name}/objects/timeperiods.cfg
|
||||
%config(noreplace) %{_sysconfdir}/%{name}/objects/windows.cfg
|
||||
%config(noreplace) %attr(640,icinga,icinga) %{_sysconfdir}/%{name}/resource.cfg
|
||||
%config(noreplace) %{_sysconfdir}/logrotate.d/%{name}
|
||||
%attr(755,-,-) %{_bindir}/icinga
|
||||
%attr(755,-,-) %{_bindir}/icingastats
|
||||
%attr(755,-,-) %{_libdir}/icinga/p1.pl
|
||||
%{_libdir}/%{name}/eventhandlers
|
||||
%{plugindir}/downtimes
|
||||
%defattr(-,icinga,icinga,-)
|
||||
%dir %{logdir}
|
||||
%dir %{logdir}/archives
|
||||
%dir %{_localstatedir}/spool/%{name}
|
||||
%dir %{_localstatedir}/spool/%{name}/perfdata
|
||||
%dir %{_localstatedir}/spool/%{name}/checkresults
|
||||
%attr(2755,icinga,icingacmd) %{extcmdfiledir}
|
||||
|
||||
%files doc
|
||||
%defattr(-,root,root,-)
|
||||
%doc README.md LICENSE Changelog UPGRADING %{readme}
|
||||
%{_datadir}/%{name}/docs
|
||||
|
||||
%files gui
|
||||
%defattr(-,root,root,-)
|
||||
%doc README.md LICENSE Changelog UPGRADING %{readme}
|
||||
%{_libdir}/%{name}/cgi/avail.cgi
|
||||
%{_libdir}/%{name}/cgi/cmd.cgi
|
||||
%{_libdir}/%{name}/cgi/config.cgi
|
||||
%{_libdir}/%{name}/cgi/extinfo.cgi
|
||||
%{_libdir}/%{name}/cgi/histogram.cgi
|
||||
%{_libdir}/%{name}/cgi/history.cgi
|
||||
%{_libdir}/%{name}/cgi/notifications.cgi
|
||||
%{_libdir}/%{name}/cgi/outages.cgi
|
||||
%{_libdir}/%{name}/cgi/showlog.cgi
|
||||
%{_libdir}/%{name}/cgi/status.cgi
|
||||
%{_libdir}/%{name}/cgi/statusmap.cgi
|
||||
%{_libdir}/%{name}/cgi/summary.cgi
|
||||
%{_libdir}/%{name}/cgi/tac.cgi
|
||||
%{_libdir}/%{name}/cgi/trends.cgi
|
||||
%dir %{_datadir}/%{name}
|
||||
%{_datadir}/%{name}/images
|
||||
%{_datadir}/%{name}/index.html
|
||||
%{_datadir}/%{name}/js
|
||||
%{_datadir}/%{name}/main.html
|
||||
%{_datadir}/%{name}/media
|
||||
%{_datadir}/%{name}/menu.html
|
||||
%{_datadir}/%{name}/robots.txt
|
||||
%{_datadir}/%{name}/ssi
|
||||
%{_datadir}/%{name}/stylesheets
|
||||
%{_datadir}/%{name}/jquery-ui
|
||||
%{_datadir}/%{name}/jquery-ui-addon
|
||||
%attr(2775,icinga,icingacmd) %dir %{logdir}/gui
|
||||
%attr(664,icinga,icingacmd) %{logdir}/gui/index.htm
|
||||
%attr(664,icinga,icingacmd) %{logdir}/gui/.htaccess
|
||||
|
||||
%files gui-config
|
||||
%defattr(-,root,root,-)
|
||||
%doc README.md LICENSE Changelog UPGRADING %{readme}
|
||||
%config(noreplace) %{_sysconfdir}/%{name}/cgi.cfg
|
||||
%config(noreplace) %{_sysconfdir}/%{name}/cgiauth.cfg
|
||||
%config(noreplace) %{apacheconfdir}/icinga.conf
|
||||
%config(noreplace) %attr(0640,root,%{apachegroup}) %{_sysconfdir}/%{name}/passwd
|
||||
|
||||
|
||||
%files devel
|
||||
%defattr(-,root,root)
|
||||
%{_includedir}/%{name}/
|
||||
|
||||
%files idoutils
|
||||
%defattr(-,root,root)
|
||||
%doc README.idoutils.transitional
|
||||
|
||||
%files idoutils-libdbi-mysql
|
||||
%defattr(-,root,root,-)
|
||||
%doc README.md LICENSE Changelog UPGRADING module/idoutils/db %{readme} %{readmeido}
|
||||
%if 0%{?using_systemd}
|
||||
%attr(644,-,-) %{_unitdir}/ido2db.service
|
||||
%else
|
||||
%attr(755,-,-) %{_initrddir}/ido2db
|
||||
%endif
|
||||
%attr(660,root,root) %config(noreplace) %{_sysconfdir}/%{name}/ido2db.cfg
|
||||
%config(noreplace) %{_sysconfdir}/%{name}/idomod.cfg
|
||||
%config(noreplace) %{_sysconfdir}/%{name}/modules/idoutils.cfg
|
||||
%config(noreplace) %{_sysconfdir}/%{name}/objects/ido2db_check_proc.cfg
|
||||
%{_bindir}/ido2db
|
||||
%{_bindir}/log2ido
|
||||
%{_libdir}/%{name}/idomod.so
|
||||
|
||||
%files idoutils-libdbi-pgsql
|
||||
%defattr(-,root,root,-)
|
||||
%doc README.md LICENSE Changelog UPGRADING module/idoutils/db %{readme} %{readmeido}
|
||||
%if 0%{?using_systemd}
|
||||
%attr(644,-,-) %{_unitdir}/ido2db.service
|
||||
%else
|
||||
%attr(755,-,-) %{_initrddir}/ido2db
|
||||
%endif
|
||||
%attr(660,root,root) %config(noreplace) %{_sysconfdir}/%{name}/ido2db.cfg
|
||||
%config(noreplace) %{_sysconfdir}/%{name}/idomod.cfg
|
||||
%config(noreplace) %{_sysconfdir}/%{name}/modules/idoutils.cfg
|
||||
%config(noreplace) %{_sysconfdir}/%{name}/modules/flapjack.cfg
|
||||
%config(noreplace) %{_sysconfdir}/%{name}/modules/livestatus.cfg
|
||||
%config(noreplace) %{_sysconfdir}/%{name}/modules/mod_gearman.cfg
|
||||
%config(noreplace) %{_sysconfdir}/%{name}/modules/pnp4nagios.cfg
|
||||
%config(noreplace) %{_sysconfdir}/%{name}/objects/ido2db_check_proc.cfg
|
||||
%{_bindir}/ido2db
|
||||
%{_bindir}/log2ido
|
||||
%{_libdir}/%{name}/idomod.so
|
||||
|
||||
|
||||
%changelog
|
||||
Reference in New Issue
Block a user