Package Details: icingaweb2 2.12.1-1

Git Clone URL: https://aur.archlinux.org/icingaweb2.git (read-only, click to copy)
Package Base: icingaweb2
Description: Icinga Web 2 Interface
Upstream URL: https://icinga.com/
Licenses: GPL
Submitter: Zearan
Maintainer: julianbrost
Last Packager: julianbrost
Votes: 18
Popularity: 0.000002
First Submitted: 2014-11-23 13:41 (UTC)
Last Updated: 2023-11-22 21:46 (UTC)

Dependencies (7)

Sources (1)

Latest Comments

« First ‹ Previous 1 2 3 Next › Last »

C0rn3j commented on 2021-01-29 10:52 (UTC)

It does not til 2.9.0

https://github.com/Icinga/icingaweb2/issues/4287

The dependencies should be changed to the newly added php7, see community/nextcloud for example if needed.

dkaea353 commented on 2021-01-29 10:47 (UTC)

Is this working with PHP 8.0? The interface shows up OK, but the dashboard is stuck loading forever until I get a "Maximum execution time of 30 seconds exceeded" error.

julianbrost commented on 2020-08-19 10:15 (UTC)

A security update was just released. See https://icinga.com/2020/08/19/icinga-web-security-release-v2-6-4-v2-7-4-and-v2-8-2/ and https://github.com/Icinga/icingaweb2/issues/4226 for more details.

C0rn3j commented on 2020-04-28 22:55 (UTC) (edited on 2020-06-04 20:33 (UTC) by C0rn3j)

This package should probably have optdepends for php-ldap, php-imagick and icinga2.

I'm unable to get over "The directory /etc/icingaweb2 is not writable." error, despite even trying chmod 777 on the folder, any pointers?

EDIT: Fixed and documented on the wiki.

zork commented on 2019-12-22 16:04 (UTC) (edited on 2019-12-22 16:24 (UTC) by zork)

current 2.7.x release does not work with php 7.4 but 2.8.0rc1 seems to work ok:

git clone https://aur.archlinux.org/icingaweb2.git
cd icingaweb2/src
git clone --single-branch --branch release/v2.8.0-rc1 https://github.com/Icinga/icingaweb2.git ./icingaweb2-2.8.0rc1
cd ..
[change pkgver to 2.8.0rc1 in PKGBUILD]
makepkg --noextract

julianbrost commented on 2019-03-30 12:32 (UTC)

The git master branch works fine with PHP 7.3, so I suggest to use icingaweb2-git until a new version is released.

phreeek commented on 2019-03-28 00:36 (UTC)

Hi Julian, Hi Zearan,

aur/icingaweb2 2.6.2-1 is broken again. Please see:

https://github.com/Icinga/icingaweb2/issues/3692

Best regards phreeek

julianbrost commented on 2018-01-23 18:16 (UTC)

Yes, version 2.5.1-1 includes two additional patches: one based on the pull request which should solve the bug you linked (https://github.com/Icinga/icingaweb2/pull/3186) and one to cope with a deprecation warning in the service list. Let me know if there are any other problems with PHP 7.2.

eggz commented on 2018-01-23 15:46 (UTC)

(The issues with PHP 7.2 appear to be fixed in 2.5.1-1)

julianbrost commented on 2017-12-16 21:32 (UTC)

The following patch updates the package to version 2.5.0 and fixes compatibility with PHP 7.2 by applying the patch from pull request #3186 ( https://github.com/Icinga/icingaweb2/pull/3186). However the PR is still work in progress, so the checksum of the patch could change. diff --git a/PKGBUILD b/PKGBUILD index aca0db5..d739d98 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Malte Rabenseifner <mail@malte-rabenseifner.de> pkgname=icingaweb2 -pkgver=2.4.2 +pkgver=2.5.0 pkgrel=1 pkgdesc="Icinga Web 2 Interface" license=('GPL') @@ -11,9 +11,16 @@ optdepends=('php-gd: export data to PDF' 'php-intl: support for internationalization' 'php-pgsql: for PostgreSQL backend') url="http://www.icinga.org" -source=("https://github.com/Icinga/${pkgname}/archive/v${pkgver}.tar.gz") +source=("https://github.com/Icinga/${pkgname}/archive/v${pkgver}.tar.gz" + 'pr3186-php72-support.diff::https://github.com/Icinga/icingaweb2/pull/3186.diff') install='icingaweb2.install' -sha256sums=('8ce42b4f0fb3ddd93c56d70c642512af13db1d5db2ad0227ec7567a4413daa94') +sha256sums=('870ef8390cb2cab20df0107d817846352dc606ee85ec734aa99452222a4a76fb' + '34549ad6f3e753dd29bab19a9c47e05bbbc2d1214c821491205869bf9b631cb4') + +prepare() { + cd "$srcdir/$pkgname-$pkgver" + patch -Np1 -i "${srcdir}/pr3186-php72-support.diff" +} package() { cd "$srcdir/$pkgname-$pkgver"