2019-04-02 18:04:33 +02:00
#
# Pandora FMS Console
#
%define name pandorafms_console
2023-02-16 10:36:23 +01:00
%define version 7.0NG.769
2023-03-27 01:00:39 +02:00
%define release 230327
2019-04-02 18:04:33 +02:00
# User and Group under which Apache is running
%define httpd_name httpd
%define httpd_user apache
%define httpd_group apache
Summary: Pandora FMS Console
Name: %{name}
Version: %{version}
Release: %{release}
License: GPL
Vendor: Artica ST <info@artica.es>
#Source0: %{name}-%{version}-%{revision}.tar.gz
Source0: %{name}-%{version}.tar.gz
URL: http://www.pandorafms.com
Group: Productivity/Networking/Web/Utilities
Packager: Sancho Lerena <slerena@artica.es>
2019-04-15 11:20:57 +02:00
Prefix: /opt/rh/httpd24/root/var/www/html
2019-04-02 18:04:33 +02:00
BuildRoot: %{_tmppath}/%{name}
BuildArch: noarch
AutoReq: 0
2019-04-11 13:45:57 +02:00
Requires: httpd24-httpd
2019-04-04 17:12:08 +02:00
Requires: httpd24-mod_php >= 7.2
Requires: rh-php72-php-gd, rh-php72-php-ldap, rh-php72-php-snmp, rh-php72-php-session, rh-php72-php-gettext
Requires: rh-php72-php-mysqlnd, rh-php72-php-mbstring, rh-php72-php-zip, rh-php72-php-zlib, rh-php72-php-curl
2019-04-04 17:35:27 +02:00
Requires: xorg-x11-fonts-75dpi, xorg-x11-fonts-misc, php-pecl-zip
2019-04-02 18:04:33 +02:00
Requires: graphviz
Provides: %{name}-%{version}
%description
The Web Console is a web application that allows to see graphical reports, state of every agent, also to access to the information sent by the agent, to see every monitored parameter and to see its evolution throughout the time, to form the different nodes, groups and users of the system. It is the part that interacts with the final user, and that will allows you to administer the system.
%prep
rm -rf $RPM_BUILD_ROOT
%setup -q -n pandora_console
%build
%install
rm -rf $RPM_BUILD_ROOT
mkdir -p $RPM_BUILD_ROOT%{prefix}/pandora_console
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d/
2020-05-19 16:27:17 +02:00
cp -aRf . $RPM_BUILD_ROOT%{prefix}/pandora_console
2019-04-02 18:04:33 +02:00
rm $RPM_BUILD_ROOT%{prefix}/pandora_console/*.spec
rm $RPM_BUILD_ROOT%{prefix}/pandora_console/pandora_console_install
install -m 0644 pandora_console_logrotate_centos $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d/pandora_console
%clean
rm -rf $RPM_BUILD_ROOT
%post
2021-06-14 13:56:42 +02:00
2019-11-05 12:01:58 +01:00
# Install pandora_websocket_engine service.
cp -pf %{prefix}/pandora_console/pandora_websocket_engine /etc/init.d/
2019-11-08 09:49:09 +01:00
chmod +x /etc/init.d/pandora_websocket_engine
2019-11-05 12:01:58 +01:00
echo "You can now start the Pandora FMS Websocket service by executing"
echo " /etc/init.d/pandora_websocket_engine start"
2019-04-02 18:04:33 +02:00
# Has an install already been done, if so we only want to update the files
# push install.php aside so that the console works immediately using existing
# configuration.
#
if [ -f %{prefix}/pandora_console/include/config.php ] ; then
mv %{prefix}/pandora_console/install.php %{prefix}/pandora_console/install.done
2023-02-01 13:11:38 +01:00
# Upgrading MR.
echo "Updating the database schema."
/usr/bin/php %{prefix}/pandora_console/godmode/um_client/updateMR.php 2>/dev/null
2019-04-02 18:04:33 +02:00
else
echo "Please, now, point your browser to http://your_IP_address/pandora_console/install.php and follow all the steps described on it."
fi
%preun
# Upgrading
2021-06-14 13:56:42 +02:00
if [ "$1" -eq "1" ]; then
2019-04-02 18:04:33 +02:00
exit 0
fi
%files
%defattr(0644,%{httpd_user},%{httpd_group},0755)
%docdir %{prefix}/pandora_console/docs
%{prefix}/pandora_console
%config(noreplace) %{_sysconfdir}/logrotate.d/pandora_console
2020-01-30 13:08:56 +01:00
%attr(0644, root, root) %{_sysconfdir}/logrotate.d/pandora_console