Skip to content

Commit

Permalink
fix(vmware-daemon): add missing centreonvault.pm file to packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
omercier committed Oct 14, 2024
1 parent 90b3c9d commit 94918a9
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .github/workflows/connector-vmware.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,13 @@ jobs:
rpm_gpg_signing_key_id: ${{ secrets.RPM_GPG_SIGNING_KEY_ID }}
rpm_gpg_signing_passphrase: ${{ secrets.RPM_GPG_SIGNING_PASSPHRASE }}
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:
needs: [get-environment, package]
Expand Down
3 changes: 3 additions & 0 deletions connectors/vmware/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2024-10-10 Olivier Mercier <[email protected]> - 3.3.1
* Fix: add missing centreonvault.pm file to packaging

2024-10-10 Olivier Mercier <[email protected]> - 3.3.0
* Enhancement: add ability to read configuration from JSON file
* Enhancement: add ability to get the VMware credentials from a Centreon
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,13 @@ contents:
dst: "/usr/share/perl5/centreon/script/centreon_vmware.pm"
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"
dst: "/usr/bin/centreon_vmware_convert_config_file"
file_info:
Expand Down
2 changes: 1 addition & 1 deletion connectors/vmware/src/centreon/script/centreon_vmware.pm
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ BEGIN {

use base qw(centreon::vmware::script);

my $VERSION = '3.3.0';
my $VERSION = '3.3.1';
my %handlers = (TERM => {}, HUP => {}, CHLD => {});

my @load_modules = (
Expand Down

0 comments on commit 94918a9

Please sign in to comment.