mirror of
https://github.com/centreon/centreon-plugins.git
synced 2025-07-30 00:55:18 +02:00
Release 20241015 (#5241)
This commit is contained in:
commit
5bcf294215
2
.github/actions/promote-to-stable/action.yml
vendored
2
.github/actions/promote-to-stable/action.yml
vendored
@ -95,7 +95,7 @@ runs:
|
|||||||
jf rt download $ARTIFACT --flat
|
jf rt download $ARTIFACT --flat
|
||||||
done
|
done
|
||||||
|
|
||||||
for ARTIFACT_DL in $(dir -1|grep -E ".+${{ inputs.distrib }}.+\.deb"); do
|
for ARTIFACT_DL in $(dir -1|grep -E ".+${{ steps.parse-distrib.outputs.package_distrib_name }}.+\.deb"); do
|
||||||
ARCH=$(echo $ARTIFACT_DL | cut -d '_' -f3 | cut -d '.' -f1)
|
ARCH=$(echo $ARTIFACT_DL | cut -d '_' -f3 | cut -d '.' -f1)
|
||||||
echo "[DEBUG] - Promoting (upload) $ARTIFACT_DL to stable $TARGET_PATH."
|
echo "[DEBUG] - Promoting (upload) $ARTIFACT_DL to stable $TARGET_PATH."
|
||||||
jf rt upload "$ARTIFACT_DL" "$TARGET_PATH" --deb "${{ inputs.distrib }}/main/$ARCH"
|
jf rt upload "$ARTIFACT_DL" "$TARGET_PATH" --deb "${{ inputs.distrib }}/main/$ARCH"
|
||||||
|
7
.github/workflows/connector-vmware.yml
vendored
7
.github/workflows/connector-vmware.yml
vendored
@ -73,6 +73,13 @@ jobs:
|
|||||||
rpm_gpg_signing_key_id: ${{ secrets.RPM_GPG_SIGNING_KEY_ID }}
|
rpm_gpg_signing_key_id: ${{ secrets.RPM_GPG_SIGNING_KEY_ID }}
|
||||||
rpm_gpg_signing_passphrase: ${{ secrets.RPM_GPG_SIGNING_PASSPHRASE }}
|
rpm_gpg_signing_passphrase: ${{ secrets.RPM_GPG_SIGNING_PASSPHRASE }}
|
||||||
stability: ${{ needs.get-environment.outputs.stability }}
|
stability: ${{ needs.get-environment.outputs.stability }}
|
||||||
|
- name: Upload apt/dnf packages as artifacts if asked
|
||||||
|
if: ${{ contains(github.event.pull_request.labels.*.name, 'upload-artifacts') }}
|
||||||
|
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # v4.3.4
|
||||||
|
with:
|
||||||
|
name: vmware-connector-daemon-${{ matrix.distrib }}
|
||||||
|
path: centreon-plugin*
|
||||||
|
retention-days: 1
|
||||||
|
|
||||||
deliver-rpm:
|
deliver-rpm:
|
||||||
needs: [get-environment, package]
|
needs: [get-environment, package]
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
2024-10-10 Olivier Mercier <omercier@centreon.com> - 3.3.1
|
||||||
|
* Fix: add missing centreonvault.pm file to packaging
|
||||||
|
|
||||||
2024-10-10 Olivier Mercier <omercier@centreon.com> - 3.3.0
|
2024-10-10 Olivier Mercier <omercier@centreon.com> - 3.3.0
|
||||||
* Enhancement: add ability to read configuration from JSON file
|
* Enhancement: add ability to read configuration from JSON file
|
||||||
* Enhancement: add ability to get the VMware credentials from a Centreon
|
* Enhancement: add ability to get the VMware credentials from a Centreon
|
||||||
|
@ -39,6 +39,13 @@ contents:
|
|||||||
dst: "/usr/share/perl5/centreon/script/centreon_vmware.pm"
|
dst: "/usr/share/perl5/centreon/script/centreon_vmware.pm"
|
||||||
packager: deb
|
packager: deb
|
||||||
|
|
||||||
|
- src: "../src/centreon/script/centreonvault.pm"
|
||||||
|
dst: "/usr/share/perl5/vendor_perl/centreon/script/centreonvault.pm"
|
||||||
|
packager: rpm
|
||||||
|
- src: "../src/centreon/script/centreonvault.pm"
|
||||||
|
dst: "/usr/share/perl5/centreon/script/centreonvault.pm"
|
||||||
|
packager: deb
|
||||||
|
|
||||||
- src: "../src/centreon/script/centreon_vmware_convert_config_file"
|
- src: "../src/centreon/script/centreon_vmware_convert_config_file"
|
||||||
dst: "/usr/bin/centreon_vmware_convert_config_file"
|
dst: "/usr/bin/centreon_vmware_convert_config_file"
|
||||||
file_info:
|
file_info:
|
||||||
|
@ -54,7 +54,7 @@ BEGIN {
|
|||||||
|
|
||||||
use base qw(centreon::vmware::script);
|
use base qw(centreon::vmware::script);
|
||||||
|
|
||||||
my $VERSION = '3.3.0';
|
my $VERSION = '3.3.1';
|
||||||
my %handlers = (TERM => {}, HUP => {}, CHLD => {});
|
my %handlers = (TERM => {}, HUP => {}, CHLD => {});
|
||||||
|
|
||||||
my @load_modules = (
|
my @load_modules = (
|
||||||
|
Loading…
x
Reference in New Issue
Block a user