Go to file
antonfischl1980 b463ef010c dev-util/tea-0.9.0-r1: mark stable 2023-01-20 10:32:38 +00:00
.github update Copyright 2023-01-17 09:24:16 +01:00
acct-group/graphite-web net-analyzer/graphite-web-gunicorn: first commit 2022-05-02 09:01:26 +02:00
acct-user/graphite-web net-analyzer/graphite-web-gunicorn: first commit 2022-05-02 09:01:26 +02:00
app-admin/VMware-vSphere-CLI shellcheck: fix SC2001 2022-04-15 16:00:44 +02:00
app-misc/go-carbon shellcheck: fix SC2164 (cd or die) 2022-04-15 10:28:43 +02:00
app-text/xlsx2csv bump app-text/xlsx2csv-0.8.0 2023-01-10 06:02:22 +00:00
dev-libs dev-libs/icinga-php-library-0.10.1: mark stable 2023-01-13 10:33:05 +00:00
dev-perl dev-perl/DBD-Sybase: bump 1.21 2023-01-19 06:39:09 +01:00
dev-php/pecl-yaml dev-php/pecl-yaml: fix PHP dependencies 2022-08-14 12:07:34 +02:00
dev-python dev-python/yamlloader: add DISTUTILS_USE_PEP517 2023-01-17 08:53:49 +01:00
dev-util/tea dev-util/tea-0.9.0-r1: mark stable 2023-01-20 10:32:38 +00:00
licenses net-analyzer/check_vmware_esx: added 2021-12-18 11:03:57 +01:00
metadata update metadata 2023-01-19 06:51:51 +00:00
net-analyzer net-analyzer/graphite-web-gunicorn: fix POSIX-compatability 2023-01-19 07:50:35 +01:00
profiles www-apps/icingaweb2-module-fileshipper: fix PHP dependencies 2022-08-12 16:49:37 +02:00
www-apps bump www-apps/icingaweb2-module-incubator-0.20.0 2023-01-17 05:30:02 +00:00
www-client/phantomjs-bin www-client/phantomjs-bin: added missing remote-id 2023-01-19 07:48:12 +01:00
.gitignore net-analyzer/check_vmware_esx: added 2021-12-18 11:03:57 +01:00
.shellcheckrc .shellcheckrc: allow /sbin/openrc-run as shell 2022-04-15 09:01:46 +02:00
LICENSE add GPL-3 License 2021-12-21 13:36:37 +01:00
README.md app-portage/repoman is unmaintained and will be removed from portage 2022-09-15 17:32:05 +02:00

README.md

Gentoo Overlay Repository for Icinga2 related stuff (mainly check plugins)

QA-Status: pkgcheck ShellCheck

Intro

in its current form this repo hosts ebuilds for a handful of icinga2 check plugins (and, if necessary, their dependencies) that I found useful for myself. I will also provide command definitions for icinga2, if necessary (i.e. the plugin isn't already in the icinga2 ITL)

In rare cases these ebuilds also include templates for icingaweb2-modules-graphite (see net-analyzer/check_haproxy as an example).

There are also a few icingaweb2-modules in category www-apps.

I try to have these ebuilds as current to upstream as possible. In the near future I want to have a bot doing most of the maintenance stuff (like bumping ebuilds on new releases) For this, I have build a bot that does most of the (unstable) version bumping

If you think there is an check plugin missing, please file an Issue or (much more appreciated) a pull request at Github.

Adding the overlay

Official list

Layman

If you are using Layman, execute:

layman -a icinga

eselect-repository

If you are using eselect-repository, execute:

eselect repository enable icinga

using the profile

This repo provides profiles selectable via "eselect profile" for default USE-Flags and masking/unmasking different packages. Take a look at profiles/icinga/ for details.

eselect profile list
...
[xx]  icinga:default/linux/amd64/17.1/icinga (stable)

eselect profile select icinga:default/linux/amd64/17.1/icinga

You can also use this profile as basis for your own profile. (see wiki.gentoo.org)

# make new repository
eselect repository create <repo_name>

# we must use 'portage-2' format so 'parent' can be easily set to other repos
echo "profile-formats = portage-2" >> /var/db/repos/<repo_name>/metadata/layout.conf

# create new profile
mkdir /var/db/repos/<repo_name>/profiles/<profile_name>
echo 7 > /var/db/repos/<repo_name>/profiles/<profile_name>/eapi

# set parent to mix and match your needs
echo "gentoo:default/linux/amd64/17.1" >/var/db/repos/<repo_name>/profiles/<profile_name>/parent
# include icinga defaults
echo "icinga:icinga" >> /var/db/repos/<repo_name>/profiles/<profile_name>/parent

# make it known to 'eselect profile'
echo -e "amd64\t<profile_name>\tstable" >> /var/db/repos/<repo_name>/profiles/profiles.desc

# select the new profile
eselect profile list
eselect profile set '<repo_name>:<profile_name>'

# don't forget to 'emerge world' for the changed USE-Flags

Submitting an Issue

Ebuild error

the issue tracker is located in my GitHub repository. If an ebuild appears to produce an error, please report it there.

Contributing

I appreciate and encourage for contribution. If you want a specific package or want to create a package for me to maintain, please make a pull request.

TODOs

  • automatically generate new ebuilds (marked as unstable) if upstream releases new version
  • provide a meta-ebuild that installs haproxy/apache/php/mariadb/graphite/grafana with example config and documentation. The goal here is to provide an "easy" installation for a running icinga2 instance in Gentoo