Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Ubuntu (24.04) Noble support #138

Merged
merged 2 commits into from
Aug 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 27 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,34 @@ This module provides several non private helper classes for the other official I
* [icingadb](https://github.com/voxpupuli/puppet-icingadb)
* [icingaweb2](https://github.com/voxpupuli/puppet-icingaweb2)

### How to use the classes for Icinga Web an databases with MariaDB on Debian bookwork
### How to use the classes for Icinga Web or any database use on Ubuntu Noble

To get Icinga Web 2 running on Debian bookworm use puppet-php >=8.1.0 (no longer necessary if puppet-php >= 10.2.0 is used) and set:
To get Icinga Web 2 running on Ubutunt Noble use puppet-php >=8.3.0 and set:

```yaml
php::globals::php_version: '8.3'
```

The current MariaDB logs to syslog by default so set:

```yaml
mysql::server::override_options:
mysqld:
log-error: ~
```

This disables the logging to file and the requirement and management of an existing directory /var/log/mysql.

If using PostgreSQL you have to set the version to '16':

```yaml
---
postgresql::globals::version: '16'
```

### How to use the classes for Icinga Web or databases with MariaDB on Debian Bookwork

To get Icinga Web 2 running on Debian Bookworm use puppet-php >=8.2.0 (no longer necessary if puppet-php >= 10.2.0 is used) and set:

```yaml
php::globals::php_version: '8.2'
Expand Down
3 changes: 2 additions & 1 deletion metadata.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{

Check warning on line 1 in metadata.json

View workflow job for this annotation

GitHub Actions / Puppet / Static validations

Skipping EOL operating system CentOS 8
"name": "puppet-icinga",
"version": "5.0.1-rc0",
"author": "Vox Pupuli",
Expand Down Expand Up @@ -61,7 +61,8 @@
"operatingsystem": "Ubuntu",
"operatingsystemrelease": [
"20.04",
"22.04"
"22.04",
"24.04"
]
},
{
Expand Down