This repository has been archived by the owner on Dec 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 240
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge release-debian-22.04.0 into 22.04.x (#11383)
* fix jenkinsfile for debian * fix jenkinsfile for debian * fix jenkinsfile for debian * fix jenkinsfile for debian * fix jenkinsfile for debian * fix jenkinsfile for debian * Update centreon-common.postinst * add centreon-poller package (#11274) * Fix lowercase names (#11275) * add package as dependency of centreon-poller (#11282) * improve snmpd file change (#11287) * fix path (#11288) * set snmp community to public using centreon profile (#11291) * (debian) Fix commit number in about page (#11292) * fix get commit number * fix path to get commit * add postinst to fix permissions for poller package (#11300) * comment other public entry (#11301) * (debian) fix permissions in generate traps directory (#11302) * fix permissions in generate traps directory * add centreon-engine-extcommands as dependency * Add widget single metric (#11303) * (debian) add centreon-database plugin as dependecy (#11306) * add centreon-database plugin as dependecy * add centreon-plugin-applications-jvm-actuator * fix(install): add port to dsn in database tempalte (#11324) * Update Jenkinsfile * Update Jenkinsfile * Update control * Update Jenkinsfile * Update Jenkinsfile * Update Jenkinsfile * simplifies the COMMIT var get value * add apt upgrade before run tasks Co-authored-by: Zakaria GUENNOUNE <zguennoune@centreon.com> Co-authored-by: Zakaria Guennoune <83596451+zguennoune02@users.noreply.github.com> Co-authored-by: Luiz Costa <me@luizgustavo.pro.br>
- Loading branch information
Showing
9 changed files
with
87 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/sh | ||
|
||
if [ "$1" = "configure" ]; then | ||
|
||
if [ "$(getent passwd centreon-engine)" ]; then | ||
chmod -v -R 0775 \ | ||
/var/lib/centreon/centplugins | ||
chown -v -R centreon-engine:centreon-engine \ | ||
/var/lib/centreon/centplugins | ||
fi | ||
|
||
fi | ||
exit 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
#!/usr/bin/make -f | ||
|
||
export DH_VERBOSE=1 | ||
export CYPRESS_CACHE_FOLDER=$PWD/cypress_cache | ||
|
||
%: | ||
dh $@ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
database: | ||
db_configuration: | ||
dsn: "mysql:host=--ADDRESS--:--DBPORT--;dbname=--CONFDB--" | ||
dsn: "mysql:host=--ADDRESS--:port=--DBPORT--;dbname=--CONFDB--" | ||
username: "--DBUSER--" | ||
password: "--DBPASS--" | ||
db_realtime: | ||
dsn: "mysql:host=--ADDRESS--:--DBPORT--;dbname=--STORAGEDB--" | ||
dsn: "mysql:host=--ADDRESS--:port=--DBPORT--;dbname=--STORAGEDB--" | ||
username: "--DBUSER--" | ||
password: "--DBPASS--" |