diff --git a/.github/actions/deb-delivery/action.yml b/.github/actions/deb-delivery/action.yml new file mode 100644 index 000000000..a7d1e28be --- /dev/null +++ b/.github/actions/deb-delivery/action.yml @@ -0,0 +1,64 @@ +name: "deb-package" +description: "Package DEB Centreon" +inputs: + distrib: + description: "The distribution used for packaging" + required: true + major_version: + description: "The major version" + required: true + artifactory_username: + description: The artifactory username + required: true + artifactory_password: + description: The artifactory password + required: true + version: + description: "Centreon packaged version" + required: true + release: + description: The release number + required: true + cache_key: + description: "The cached package key" + required: true + stability: + description: "The package stability (stable, testing, unstable)" + required: true + +runs: + using: "composite" + steps: + - name: Use cache DEB files + uses: actions/cache@v3 + with: + path: ./*.deb + key: ${{ inputs.cache_key }} + + - name: Publish DEBS to Nexus + run: | + set -e + FILES="centreon-plugin-operatingsystems-linux-*.deb" + + VERSION="${{ inputs.version }}" + RELEASE="${{ inputs.release }}" + REPOTYPE="${{ inputs.stability }}" + PROJECT="plugins" + PROJECT_PATH="standard" + + find -name "*.deb" -print0 | xargs -0 -t -I % -P 2 curl -u "${{ inputs.artifactory_username }}":"${{ inputs.artifactory_password }}" -H "Content-Type: multipart/form-data" --data-binary "@%" https://apt.centreon.com/repository/${{ inputs.major_version }}-$REPOTYPE/ + + #for MAJOR in "22.04" "22.10"; do + # echo "Delivering to $MAJOR $REPOTYPE" + + # find -name "*.deb" -print0 | xargs -0 -t -I % -P 2 curl -u "${{ inputs.artifactory_username }}":"${{ inputs.artifactory_password }}" -H "Content-Type: multipart/form-data" --data-binary "@%" https://apt.centreon.com/repository/$MAJOR-$REPOTYPE/ + + # for FILE in $FILES; do + # echo "::group::Delivering $FILE" + + #curl -v -u "${{ inputs.artifactory_username }}":"${{ inputs.artifactory_password }}" -H "Content-Type: multipart/form-data" --data-binary "@./$FILE" https://apt.centreon.com/repository/$MAJOR-$REPOTYPE/ + + # echo "::endgroup::" + # done + #done + shell: bash diff --git a/.github/actions/package/action.yml b/.github/actions/package/action.yml new file mode 100644 index 000000000..ad2818db8 --- /dev/null +++ b/.github/actions/package/action.yml @@ -0,0 +1,70 @@ +name: package +description: Package module +inputs: + package_extension: + description: The package extension (deb or rpm) + required: true + image_name: + description: The action matrix + required: true + script_name: + description: The packaging script name + plugins: + description: List of plugins to package + required: true + version: + description: The plugins version + required: true + release: + description: The release number + required: true + cache_key: + description: The package files cache key + required: true + sign: + description: Wether to sign the package or not + default: "" + artifactory_username: + description: The artifactory username + required: true + artifactory_password: + description: The artifactory password + required: true + +runs: + using: composite + + steps: + + - name: Login to Registry + uses: docker/login-action@v2 + with: + registry: docker.centreon.com + username: ${{ inputs.artifactory_username }} + password: ${{ inputs.artifactory_password }} + + - name: Package + uses: ./.github/actions/runner-docker + with: + script_name: ${{ inputs.script_name }} + image_name: ${{ inputs.image_name }} + image_version: latest + artifactory_username: ${{ inputs.artifactory_username }} + artifactory_password: ${{ inputs.artifactory_password }} + params: ${{ inputs.version }} ${{ inputs.release }} "${{ inputs.plugins }}" + + - name: Sign + if: ${{ inputs.sign != '' && inputs.package_extension == 'rpm' }} + uses: ./.github/actions/runner-docker + with: + script_name: rpm-signing + image_name: rpm-signing + image_version: ubuntu + artifactory_username: ${{ inputs.artifactory_username }} + artifactory_password: ${{ inputs.artifactory_password }} + + - name: Cache packaged files + uses: actions/cache@v3 + with: + path: ./*.${{ inputs.package_extension }} + key: ${{ inputs.cache_key }} diff --git a/.github/actions/rpm-delivery/action.yml b/.github/actions/rpm-delivery/action.yml new file mode 100644 index 000000000..5f2f413be --- /dev/null +++ b/.github/actions/rpm-delivery/action.yml @@ -0,0 +1,110 @@ +name: "rpm-delivery" +description: "rpm delivery" +inputs: + distrib: + description: "The distribution used for packaging" + required: true + version: + description: "Centreon packaged version" + required: true + release: + description: The release number + required: true + cache_key: + description: "The cached package key" + required: true + yum_repo_url: + description: "The legacy yum repo url" + required: true + update_repo_path: + description: "The update repo script path" + required: true + cloudfront_id: + description: "The cloudfront ID for repo url" + required: true + yum_repo_address: + description: "The legacy yum repo address" + required: true + yum_repo_key: + description: "The repo key" + required: true + stability: + description: "The package stability (stable, testing, unstable)" + required: true + +runs: + using: "composite" + steps: + - name: Use cache RPM files + uses: actions/cache@v3 + with: + path: ./*.rpm + key: ${{ inputs.cache_key }} + + - name: Setup awscli + run: | + curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" + sudo unzip -q awscliv2.zip + sudo ./aws/install + shell: bash + + - name: Publish RPMS + run: | + FILES="*.rpm" + + VERSION="${{ inputs.version }}" + RELEASE="${{ inputs.release }}" + REPOTYPE="${{ inputs.stability }}" + PROJECT="plugins" + PROJECT_PATH="standard" + DISTRIB="${{ inputs.distrib }}" + ARCH="noarch" + + eval `ssh-agent` + ssh-add - <<< "${{ inputs.yum_repo_key }}" + + for MAJOR in "21.10" "22.04" "22.10"; do + echo "::group::Delivering to $MAJOR $REPOTYPE" + + if [ "$REPOTYPE" == "stable" ]; then + TARGET="/srv/centreon-yum/yum.centreon.com/$PROJECT_PATH/$MAJOR/$DISTRIB/$REPOTYPE/$ARCH/RPMS" + else + FOLDER="centreon-$PROJECT-$VERSION-$RELEASE" + TARGET="/srv/centreon-yum/yum.centreon.com/$PROJECT_PATH/$MAJOR/$DISTRIB/$REPOTYPE/$ARCH/$PROJECT/$FOLDER" + PROJECT_LOCATION="/srv/centreon-yum/yum.centreon.com/$PROJECT_PATH/$MAJOR/$DISTRIB/$REPOTYPE/$ARCH/$PROJECT" + fi + + echo "[DEBUG] - Folder: $FOLDER" + echo "[DEBUG] - Project : $PROJECT" + echo "[DEBUG] - Target : $TARGET" + echo "[DEBUG] - PROJECT_LOCATION : $PROJECT_LOCATION" + + ssh -o StrictHostKeyChecking=no "${{ inputs.yum_repo_address }}" mkdir -p "$TARGET" + scp -o StrictHostKeyChecking=no ./*.rpm "${{ inputs.yum_repo_address }}:$TARGET" + + # Cleanup is done on unstable repository only + if [ "$REPOTYPE" == "unstable" ]; then + ssh -o StrictHostKeyChecking=no "${{ inputs.yum_repo_address }}" "ls -drc $PROJECT_LOCATION/* 2>&- | head -n -1 | xargs rm -rf" + fi + + # Update repository metadata + METADATAS="/srv/centreon-yum/yum.centreon.com/$PROJECT_PATH/$MAJOR/$DISTRIB/$REPOTYPE/$ARCH" + ssh -o StrictHostKeyChecking=no "${{ inputs.yum_repo_address }}" "sh "${{ inputs.update_repo_path }}" $METADATAS" 2>&- + + # Invalidate cloudfront cache + ID="${{ inputs.cloudfront_id }}" + PATHS="/$PROJECT_PATH/$MAJOR/$DISTRIB/$REPOTYPE/$ARCH/*" + ITERATIONS=1 + + until aws cloudfront create-invalidation --distribution-id "$ID" --paths "$PATHS"; do + if [ ${ITERATIONS} -eq 10 ]; then + return 0 + fi + echo "couldn't invalidate cache, AWS quota might have been reached, retrying in 30 seconds..." + sleep 30s + ITERATIONS=$((ITERATIONS+1)) + done + + echo "::endgroup::" + done + shell: bash diff --git a/.github/actions/runner-docker/action.yml b/.github/actions/runner-docker/action.yml new file mode 100644 index 000000000..e0951f4e9 --- /dev/null +++ b/.github/actions/runner-docker/action.yml @@ -0,0 +1,36 @@ +name: run-in-docker +description: Run step in docker container +inputs: + script_name: + description: "script_name" + required: true + image_name: + description: "image_name" + required: true + image_version: + description: "image_version" + required: true + centreon_pat: + description: "Secret" + required: false + artifactory_username: + description: The artifactory username + required: true + artifactory_password: + description: The artifactory password + required: true + params: + description: "params for script" + required: false +runs: + using: "composite" + steps: + - name: Login to Registry (via runner) + uses: docker/login-action@v2 + with: + registry: docker.centreon.com + username: ${{ inputs.artifactory_username }} + password: ${{ inputs.artifactory_password }} + + - run: docker run -i -e TOKEN=${{ inputs.centreon_pat }} --entrypoint /src/.github/scripts/${{ inputs.script_name }}.sh -v "$PWD:/src" docker.centreon.com/${{ inputs.image_name }}:${{ inputs.image_version }} ${{ inputs.params }} + shell: bash diff --git a/.github/docker/Dockerfile.packaging-plugins-alma8 b/.github/docker/Dockerfile.packaging-plugins-alma8 new file mode 100644 index 000000000..a4183760b --- /dev/null +++ b/.github/docker/Dockerfile.packaging-plugins-alma8 @@ -0,0 +1,13 @@ +FROM docker-proxy.centreon.com/almalinux:8.5 + +RUN < +Build-Depends: + debhelper-compat (= 12), + libapp-fatpacker-perl, + libfile-copy-recursive-perl, + libjson-perl +Standards-Version: 4.5.0 +Homepage: https://www.centreon.com + diff --git a/.github/packaging/debian/copyright b/.github/packaging/debian/copyright new file mode 100644 index 000000000..816f3925d --- /dev/null +++ b/.github/packaging/debian/copyright @@ -0,0 +1,29 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: centreon-collect +Upstream-Contact: Centreon +Source: https://www.centreon.com + +Files: * +Copyright: 2021 Centreon +License: Apache-2.0 + +Files: debian/* +Copyright: 2021 Centreon +License: Apache-2.0 + +License: Apache-2.0 + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + . + https://www.apache.org/licenses/LICENSE-2.0 + . + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + . + On Debian systems, the complete text of the Apache version 2.0 license + can be found in "/usr/share/common-licenses/Apache-2.0". + diff --git a/.github/packaging/debian/plugin.install.template b/.github/packaging/debian/plugin.install.template new file mode 100644 index 000000000..937497ef7 --- /dev/null +++ b/.github/packaging/debian/plugin.install.template @@ -0,0 +1 @@ +plugins/@DIR@/@NAME@ usr/lib/centreon/plugins diff --git a/.github/packaging/debian/rules b/.github/packaging/debian/rules new file mode 100644 index 000000000..d1cd2b1a6 --- /dev/null +++ b/.github/packaging/debian/rules @@ -0,0 +1,7 @@ +#!/usr/bin/make -f + +%: + dh $@ + +override_dh_clean: +override_dh_auto_build: diff --git a/.github/packaging/debian/source/format b/.github/packaging/debian/source/format new file mode 100644 index 000000000..163aaf8d8 --- /dev/null +++ b/.github/packaging/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/.github/packaging/rpm/plugin.spectemplate b/.github/packaging/rpm/plugin.spectemplate new file mode 100644 index 000000000..3e4b32699 --- /dev/null +++ b/.github/packaging/rpm/plugin.spectemplate @@ -0,0 +1,48 @@ +Name: @NAME@ +Version: @VERSION@ +Release: @RELEASE@%{?dist} +Source0: %{name}-%{version}.tar.gz +Summary: @SUMMARY@ +Group: Development/Libraries +License: ASL 2.0 +URL: https://www.centreon.com/ +BuildArch: noarch +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +AutoReqProv: no + +AutoReqProv: no +Requires: perl(Digest::MD5) +Requires: perl(Pod::Find) +Requires: perl-Net-Curl +Requires: perl(URI::Encode) +Requires: perl(LWP::UserAgent) +Requires: perl(LWP::Protocol::https) +Requires: perl(IO::Socket::SSL) +Requires: perl(URI) +Requires: perl(HTTP::ProxyPAC) +Requires: perl-CryptX +Requires: perl(MIME::Base64) +Requires: perl(JSON::XS) +Requires: perl-JSON-Path +Requires: perl-KeePass-Reader +Requires: perl(Storable) +Requires: perl(POSIX) +Requires: perl(Encode) +@REQUIRES@ + +@CUSTOM_PKG_DATA@ + +%description +Centreon plugin + +%prep +%setup -q + +%install +rm -rf %{buildroot} +mkdir -p %{buildroot}/usr/lib/centreon/plugins/ +%{__install} -m 775 *.pl %{buildroot}%{_prefix}/lib/centreon/plugins/ + +%files +%defattr(-,root,root,-) +%{_prefix}/lib/centreon/plugins/@PLUGIN_NAME@ diff --git a/.github/scripts/create-spec-file.py b/.github/scripts/create-spec-file.py new file mode 100644 index 000000000..ae53757e4 --- /dev/null +++ b/.github/scripts/create-spec-file.py @@ -0,0 +1,34 @@ +#!/usr/bin/env python3 + +import json +from sys import argv + +package_name = argv[1] +package_version = argv[2] +package_release = argv[3] + +with open('.github/packaging/rpm/plugin.spectemplate', 'r') as rfile: + specfile = rfile.read() + +with open('packaging/%s/pkg.json' % package_name, 'r') as rfile: + plugincfg = json.load(rfile) + +with open('packaging/%s/rpm.json' % package_name, 'r') as rfile: + pluginrpm = json.load(rfile) + +specfile = specfile.replace('@NAME@', package_name) +specfile = specfile.replace('@VERSION@', package_version) +specfile = specfile.replace('@RELEASE@', package_release) +specfile = specfile.replace('@SUMMARY@', plugincfg['pkg_summary']) +specfile = specfile.replace('@PLUGIN_NAME@', plugincfg['plugin_name']) +specfile = specfile.replace( + '@REQUIRES@', + "\n".join(["Requires:\t%s" % x for x in pluginrpm.get('dependencies', '')]) +) +specfile = specfile.replace( + '@CUSTOM_PKG_DATA@', pluginrpm.get('custom_pkg_data', '') +) + +# write final specfile +with open('plugin.specfile', 'w+') as wfile: + wfile.write(specfile) diff --git a/.github/scripts/plugin-packaging-deb.sh b/.github/scripts/plugin-packaging-deb.sh new file mode 100755 index 000000000..3c96b0cad --- /dev/null +++ b/.github/scripts/plugin-packaging-deb.sh @@ -0,0 +1,45 @@ +#!/bin/bash + +set -e + +VERSION="$1" +RELEASE="$2" +PLUGINS="$3" + +cd /src + +mkdir -p centreon-plugins/plugins +cp -R .github/packaging/debian centreon-plugins/debian +mv centreon-plugins/debian/control.head.template centreon-plugins/debian/control + +for PLUGIN in $PLUGINS; do + + if [[ "$PLUGIN" =~ (.*)"=>".* ]]; then + PLUGIN=$(echo ${BASH_REMATCH[1]}) + fi + PLUGIN_NAME_LOWER=$(echo "$PLUGIN" | tr '[:upper:]' '[:lower:]') + + echo "::group::Preparing $PLUGIN_NAME_LOWER" + + mkdir centreon-plugins/plugins/$PLUGIN + cp -R build/$PLUGIN/*.pl centreon-plugins/plugins/$PLUGIN + + # Process package files + pkg_values=($(cat "packaging/$PLUGIN/pkg.json" | jq -r '.pkg_name,.plugin_name')) + pkg_summary=$(echo "${pkg_values[0]}") + plugin_name=$(echo "${pkg_values[1]}") + deb_dependencies=$(cat "packaging/$PLUGIN/deb.json" | jq -r '.dependencies | join(",\\n ")') + + sed -e "s/@NAME@/$PLUGIN_NAME_LOWER/g" -e "s/@SUMMARY@/$pkg_summary/g" -e "s/@REQUIRES@/$deb_dependencies/g" < centreon-plugins/debian/control.body.template >> centreon-plugins/debian/control + + # .install file + sed -e "s/@DIR@/$PLUGIN/g" -e "s/@NAME@/$plugin_name/g" < centreon-plugins/debian/plugin.install.template >> centreon-plugins/debian/$PLUGIN_NAME_LOWER.install + + echo "::endgroup::" +done + +rm -f centreon-plugins/debian/*.template +tar czf centreon-plugins-${VERSION}-${RELEASE}.tar.gz centreon-plugins +cd centreon-plugins +debmake -f "Centreon" -e "contact@centreon.com" -u "${VERSION}-${RELEASE}" -y -r "bullseye" +debuild-pbuilder --no-lintian diff --git a/.github/scripts/plugin-packaging-rpm.sh b/.github/scripts/plugin-packaging-rpm.sh new file mode 100755 index 000000000..5f7f0f065 --- /dev/null +++ b/.github/scripts/plugin-packaging-rpm.sh @@ -0,0 +1,32 @@ +#!/bin/bash + +set -e + +VERSION="$1" +RELEASE="$2" +PLUGINS="$3" + +for PLUGIN_NAME in $PLUGINS; do + + if [[ "$PLUGIN_NAME" =~ (.*)"=>".* ]]; then + PLUGIN_NAME=$(echo ${BASH_REMATCH[1]}) + fi + + # Process specfile + rm -f plugin.specfile + python3 .github/scripts/create-spec-file.py "$PLUGIN_NAME" "$VERSION" "$RELEASE" + + rm -rf $HOME/rpmbuild/{BUILD,BUILDROOT,RPMS,SOURCES,SPECS,SRPMS} + mkdir -p $HOME/rpmbuild/{BUILD,BUILDROOT,RPMS,SOURCES,SPECS,SRPMS} + + mv build/$PLUGIN_NAME $PLUGIN_NAME-$VERSION + tar czf $PLUGIN_NAME-$VERSION.tar.gz $PLUGIN_NAME-$VERSION + mv $PLUGIN_NAME-$VERSION.tar.gz $HOME/rpmbuild/SOURCES/ + + cd $PLUGIN_NAME-$VERSION + rpmbuild -ba ../plugin.specfile + find $HOME/rpmbuild/RPMS -name *.rpm -exec mv {} /src/ \; + + cd - + +done diff --git a/.github/scripts/plugins-source.container.pl b/.github/scripts/plugins-source.container.pl new file mode 100644 index 000000000..6f68a30b9 --- /dev/null +++ b/.github/scripts/plugins-source.container.pl @@ -0,0 +1,111 @@ +#!/usr/bin/env perl + +use App::FatPacker; +use File::Copy::Recursive; +use File::Path; +use File::Basename; +use JSON; +use Cwd qw(getcwd); + +my $pwd = (getcwd . '/'); +my $plugins_dir = ($pwd . 'centreon-plugins'); +my $packaging_dir = ($pwd . 'packaging'); +my $build_dir = ($pwd . 'build'); + +# Prepare destination directory. +File::Path::remove_tree($build_dir); +File::Path::make_path($build_dir); + + +# Set version within sources. +my $plugins = $ARGV[0]; +my $global_version = $ARGV[1]; +do { + local $^I = '.bak'; + local @ARGV = ($plugins_dir . '/centreon/plugins/script.pm'); + while (<>) { + s/^my \$global_version = .*$/my \$global_version = '$global_version';/ig; + print; + } +}; +do { + local $^I = '.bak'; + local @ARGV = ($plugins_dir . '/centreon/plugins/script.pm'); + while (<>) { + s/^my \$alternative_fatpacker = 0;$/my \$alternative_fatpacker = 1;/ig; + print; + } +}; + +chdir($packaging_dir); + +my @plugins = split / /, $plugins; +foreach my $plugin (@plugins) { + chdir($packaging_dir); + + # Load plugin configuration file. + if (! -f $plugin . '/pkg.json') { + if ($plugin =~ /(.*)=>/) { + $plugin = $1; + } + } + print "::group::Processing $plugin..."; + if (-f $plugin . '/pkg.json') { + my $plugin_build_dir = $build_dir . '/' . $plugin; + File::Path::make_path($plugin_build_dir); + + open($fh, '<', $plugin . '/pkg.json'); + my $json_content = do { local $/; <$fh> }; + close($fh); + $config = JSON::decode_json($json_content); + + # Prepare plugin layout. + chdir($plugins_dir); + File::Path::remove_tree('lib'); + File::Path::make_path('lib'); + my @common_files = ( + 'centreon/plugins/http.pm', + 'centreon/plugins/misc.pm', + 'centreon/plugins/mode.pm', + 'centreon/plugins/multi.pm', + 'centreon/plugins/options.pm', + 'centreon/plugins/output.pm', + 'centreon/plugins/perfdata.pm', + 'centreon/plugins/script.pm', + 'centreon/plugins/statefile.pm', + 'centreon/plugins/values.pm', + 'centreon/plugins/backend/http/curl.pm', + 'centreon/plugins/backend/http/curlconstants.pm', + 'centreon/plugins/backend/http/lwp.pm', + 'centreon/plugins/backend/http/useragent.pm', + 'centreon/plugins/alternative/Getopt.pm', + 'centreon/plugins/alternative/FatPackerOptions.pm', + 'centreon/plugins/passwordmgr/environment.pm', + 'centreon/plugins/passwordmgr/hashicorpvault.pm', + 'centreon/plugins/passwordmgr/keepass.pm', + 'centreon/plugins/passwordmgr/teampass.pm', + 'centreon/plugins/templates/catalog_functions.pm', + 'centreon/plugins/templates/counter.pm', + 'centreon/plugins/templates/hardware.pm' + ); + foreach my $file ((@common_files, @{$config->{files}})) { + print " - $file\n"; + if (-f $file) { + File::Copy::Recursive::fcopy($file, 'lib/' . $file); + } elsif (-d $file) { + File::Copy::Recursive::dircopy($file, 'lib/' . $file); + } + } + # Remove __END__ for Centreon Connector Perl compatibility. + system 'find', 'lib', '-name', '*.pm', '-exec', 'sed', '-i', ' /__END__/d', '{}', ';'; + + # Fatpack plugin. + my $fatpacker = App::FatPacker->new(); + my $content = $fatpacker->fatpack_file("centreon_plugins.pl"); + open($fh, '>', "$plugin_build_dir/$config->{plugin_name}"); + print $fh $content; + close($fh); + chmod 0755, "$plugin_build_dir/$config->{plugin_name}"; # Add execution permission + } + print "::endgroup::"; +} diff --git a/.github/scripts/process-plugins.py b/.github/scripts/process-plugins.py new file mode 100644 index 000000000..068bbbdb7 --- /dev/null +++ b/.github/scripts/process-plugins.py @@ -0,0 +1,52 @@ +#!/usr/bin/env python3 + +from sys import argv +import re +import os +import json + +common = argv[1] == 'true' +packages = argv[2] +plugins = argv[3] + +list_plugins_dir = set() +list_packages = set() + +if not common: + for plugin in plugins.split(' '): + try: + found = re.search('(.*)\/mode\/.*', plugin).group(1) + list_plugins_dir.add(found) + except AttributeError: + try: + found = re.search('(.*)\/plugin.pm', plugin).group(1) + list_plugins_dir.add(found) + except AttributeError: + pass + updated_packages = packages.split(' ') + +for filepath in os.popen('find packaging -type f -name pkg.json').read().split('\n')[0:-1]: + packaging_file = open(filepath) + packaging = json.load(packaging_file) + packaging_file.close() + packaging_path = re.search('.*\/(centreon-plugin-.*)\/pkg.json', filepath).group(1) + if not packaging_path == packaging["pkg_name"]: + packaging_path = packaging_path + "=>" + packaging["pkg_name"] + if common or filepath in updated_packages: + list_packages.add(packaging_path) + else: + for pkg_file in packaging["files"]: + pkg_file_dir = pkg_file + try: + found = re.search('(.*)\/mode\/.*', pkg_file).group(1) + pkg_file_dir = found + except AttributeError: + try: + found = re.search('(.*)\/plugin.pm', pkg_file).group(1) + pkg_file_dir = found + except AttributeError: + pass + if pkg_file_dir in list_plugins_dir: + list_packages.add(packaging_path) + +print(*list_packages) diff --git a/.github/scripts/rpm-signing.sh b/.github/scripts/rpm-signing.sh new file mode 100755 index 000000000..07bc88276 --- /dev/null +++ b/.github/scripts/rpm-signing.sh @@ -0,0 +1,5 @@ +#!/bin/bash + +set -ex +export GPG_TTY=$(tty) +rpmsign --addsign /src/*.rpm diff --git a/.github/workflows/docker-builder-packaging-plugins.yml b/.github/workflows/docker-builder-packaging-plugins.yml new file mode 100644 index 000000000..50a1e050c --- /dev/null +++ b/.github/workflows/docker-builder-packaging-plugins.yml @@ -0,0 +1,55 @@ +name: docker-builder-packaging-plugins + +concurrency: + group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} + cancel-in-progress: true + +on: + workflow_dispatch: +# push: +# branches: +# - develop +# paths: +# - ".github/workflows/docker-builder-packaging-plugins.yml" +# - ".github/docker/*" +# pull_request: +# paths: +# - ".github/workflows/docker-builder-packaging-plugins.yml" +# - ".github/docker/*" + +jobs: + create-and-push-docker: + runs-on: [self-hosted, common] + + strategy: + matrix: + distrib: [centos7, alma8, bullseye] + include: + - project: plugins + steps: + - name: Checkout sources + uses: actions/checkout@v3 + + - name: Login to Registry + uses: docker/login-action@v2 + with: + registry: docker.centreon.com + username: ${{ secrets.REPOS_USERNAME }} + password: ${{ secrets.REPOS_PASSWORD }} + + - name: Login to proxy registry + uses: docker/login-action@v2 + with: + registry: docker-proxy.centreon.com + username: ${{ secrets.REPOS_USERNAME }} + password: ${{ secrets.REPOS_PASSWORD }} + + - uses: docker/setup-buildx-action@v2 + + - uses: docker/build-push-action@v3 + with: + file: .github/docker/Dockerfile.packaging-${{ matrix.project }}-${{ matrix.distrib }} + context: . + pull: true + push: true + tags: docker.centreon.com/packaging-${{ matrix.project }}-${{ matrix.distrib }}:latest diff --git a/.github/workflows/get-environment.yml b/.github/workflows/get-environment.yml new file mode 100644 index 000000000..ac5bf9ae7 --- /dev/null +++ b/.github/workflows/get-environment.yml @@ -0,0 +1,52 @@ +on: + workflow_call: + outputs: + stability: + description: "branch stability (stable, testing, unstable, canary)" + value: ${{ jobs.get-version.outputs.stability }} + version: + description: "version" + value: ${{ jobs.get-version.outputs.version }} + release: + description: "release number" + value: ${{ jobs.get-version.outputs.release }} + +jobs: + get-version: + runs-on: [self-hosted, common] + outputs: + stability: ${{ steps.get_environment.outputs.stability }} + version: ${{ steps.get_environment.outputs.version }} + release: ${{ steps.get_environment.outputs.release }} + + steps: + #- uses: actions/checkout@v3 + + - id: get_environment + run: | + case "$BRANCHNAME" in + develop) + STABILITY="unstable" + ;; + release* | hotfix*) + STABILITY="testing" + ;; + master) + STABILITY="stable" + ;; + *) + STABILITY="canary" + ;; + esac + + # @todo remove next line + STABILITY="unstable" + + echo "stability=$STABILITY" >> $GITHUB_OUTPUT + + VERSION=`date '+%Y%m%d'` + echo "version=$(echo $VERSION)" >> $GITHUB_OUTPUT + + RELEASE=`date '+%H%M%S'` + echo "release=$(echo $RELEASE)" >> $GITHUB_OUTPUT + shell: bash diff --git a/.github/workflows/plugin-delivery.yml b/.github/workflows/plugin-delivery.yml new file mode 100644 index 000000000..4a725f5c2 --- /dev/null +++ b/.github/workflows/plugin-delivery.yml @@ -0,0 +1,80 @@ +on: + workflow_call: + inputs: + version: + description: "Plugins version" + type: string + required: true + release: + description: The release number + type: string + required: true + stability: + description: The package stability (stable, testing, unstable) + type: string + required: true + secrets: + artifactory_username: + required: true + artifactory_password: + required: true + update_repo_path: + description: "The update repo script path" + required: true + cloudfront_id: + description: "The cloudfront ID for repo url" + required: true + yum_repo_address: + description: "The legacy yum repo address" + required: true + yum_repo_key: + description: "The repo key" + required: true + +jobs: + deliver-rpm: + runs-on: [self-hosted, common] + strategy: + matrix: + distrib: [el7, el8] + + steps: + - name: Checkout sources + uses: actions/checkout@v3 + + - name: Delivery + uses: ./.github/actions/rpm-delivery + with: + distrib: ${{ matrix.distrib }} + version: ${{ inputs.version }} + release: ${{ inputs.release }} + cache_key: ${{ github.sha }}-${{ github.run_id }}-rpm-${{ matrix.distrib }} + update_repo_path: ${{ secrets.update_repo_path }} + cloudfront_id: ${{ secrets.cloudfront_id }} + yum_repo_address: ${{ secrets.yum_repo_address }} + yum_repo_key: ${{ secrets.yum_repo_key }} + stability: ${{ inputs.stability }} + + deliver-deb: + runs-on: [self-hosted, common] + strategy: + matrix: + major_version: ["22.04", "22.10"] + include: + - distrib: bullseye + + steps: + - name: Checkout sources + uses: actions/checkout@v3 + + - name: Delivery + uses: ./.github/actions/deb-delivery + with: + distrib: ${{ matrix.distrib }} + major_version: ${{ matrix.major_version }} + version: ${{ inputs.version }} + release: ${{ inputs.release }} + artifactory_username: ${{ secrets.artifactory_username }} + artifactory_password: ${{ secrets.artifactory_password }} + cache_key: ${{ github.sha }}-${{ github.run_id }}-deb-${{ matrix.distrib }} + stability: ${{ inputs.stability }} diff --git a/.github/workflows/plugin-package.yml b/.github/workflows/plugin-package.yml new file mode 100644 index 000000000..dc9f0b284 --- /dev/null +++ b/.github/workflows/plugin-package.yml @@ -0,0 +1,87 @@ +on: + workflow_call: + inputs: + plugins: + required: true + type: string + version: + required: true + type: string + release: + required: true + type: string + secrets: + artifactory_username: + required: true + artifactory_password: + required: true + +jobs: + fatpacker: + runs-on: ubuntu-22.04 + outputs: + version: ${{ steps.get_version.outputs.version }} + release: ${{ steps.get_version.outputs.release }} + steps: + - name: Checkout sources + uses: actions/checkout@v3 + with: + fetch-depth: 1 + + - name: Prepare FatPacker + uses: perl-actions/install-with-cpm@stable + with: + install: | + App::FatPacker + File::Copy::Recursive + JSON + + - name: Run FatPacker + run: | + COMMIT=$(git log -1 HEAD --pretty=format:%h) + perl .github/scripts/plugins-source.container.pl "${{ inputs.plugins }}" "${{ steps.get_version.outputs.version }} ($COMMIT)" + + - uses: actions/cache@v3 + with: + path: ./build/ + key: fatpacked-plugins-${{ github.sha }}-${{ github.run_id }} + + package: + runs-on: ubuntu-22.04 + needs: [fatpacker] + + strategy: + matrix: + include: + - package_extension: rpm + image: packaging-plugins-centos7 + distrib: el7 + - package_extension: rpm + image: packaging-plugins-alma8 + distrib: el8 + - package_extension: deb + image: packaging-plugins-bullseye + distrib: bullseye + name: "package ${{ matrix.distrib }}" + + steps: + - name: Checkout sources + uses: actions/checkout@v3 + + - uses: actions/cache@v3 + with: + path: ./build/ + key: fatpacked-plugins-${{ github.sha }}-${{ github.run_id }} + + - uses: ./.github/actions/package + with: + package_extension: ${{ matrix.package_extension }} + image_name: ${{ matrix.image }} + script_name: plugin-packaging-${{ matrix.package_extension }} + plugins: ${{ inputs.plugins }} + version: ${{ inputs.version }} + release: ${{ inputs.release }} + cache_key: ${{ github.sha }}-${{ github.run_id }}-${{ matrix.package_extension }}-${{ matrix.distrib }} + sign: true + artifactory_username: ${{ secrets.artifactory_username }} + artifactory_password: ${{ secrets.artifactory_password }} diff --git a/.github/workflows/plugins.yml b/.github/workflows/plugins.yml new file mode 100644 index 000000000..5d13b9da2 --- /dev/null +++ b/.github/workflows/plugins.yml @@ -0,0 +1,121 @@ +name: plugins + +concurrency: + group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} + cancel-in-progress: true + +on: + workflow_dispatch: + pull_request: + paths: + - '.github/workflows/plugins.yml' + - 'centreon-plugins/**' + - 'packaging/**' + push: + branches: + - develop + - dev-[2-9][0-9].[0-9][0-9].x + - master + - "[2-9][0-9].[0-9][0-9].x" + paths: + - '.github/workflows/plugins.yml' + - 'centreon-plugins/**' + - 'packaging/**' + tags: + - centreon-plugins-* + +jobs: + get-environment: + uses: ./.github/workflows/get-environment.yml + + get-plugins: + runs-on: ubuntu-22.04 + outputs: + plugins: ${{ steps.get_plugins.outputs.plugins }} + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + + - uses: actions/setup-python@v4 + with: + python-version: '3.9' + + - uses: dorny/paths-filter@v2 + id: filter + with: + list-files: shell + filters: | + common: + - added|deleted|modified: + - 'centreon-plugins/centreon/**' + - 'packaging/rpm/**' + - 'packaging/debian/**' + packages: + - added|modified: + - 'packaging/centreon-**' + plugins: + - added|modified: + - 'centreon-plugins/**' + + - name: transform to directories + id: transform + run: | + folders=() + for f in ${{ steps.filter.outputs.packages_files }}; \ + do \ + echo "Adding $(dirname $f) to folders"; \ + folders+=($(dirname $f)); \ + done + unique_folders=($(printf "%s\n" "${folders[@]}" | sort -u | tr '\n' ' ')) + echo "package_directories=$(jq --compact-output --null-input '$ARGS.positional' --args -- ${unique_folders[@]})" >> $GITHUB_OUTPUT + + folders=() + for f in ${{ steps.filter.outputs.plugins_files }}; \ + do \ + echo "Adding $(dirname $f) to folders"; \ + folders+=($(dirname $f)); \ + done + unique_folders=($(printf "%s\n" "${folders[@]}" | sort -u | tr '\n' ' ')) + echo "plugin_directories=$(jq --compact-output --null-input '$ARGS.positional' --args -- ${unique_folders[@]})" >> $GITHUB_OUTPUT + + - name: Get plugins for build + id: get_plugins + if: ${{ steps.filter.outputs.common == 'true' || steps.filter.outputs.packages == 'true' || steps.filter.outputs.plugins == 'true' }} + run: | + PLUGINS="$(python3 .github/scripts/process-plugins.py \ + '${{ steps.filter.outputs.common == 'true' }}' \ + '${{ steps.transform.outputs.package_directories }}' \ + '${{ steps.filter.outputs.plugin_directories }}' \ + )" + echo "plugins=$(echo $PLUGINS)" >> $GITHUB_OUTPUT + if [ "$PLUGINS" == '' ]; then + echo "::notice::There are no modifications to the plugins packages" + fi + + package: + needs: [get-environment, get-plugins] + uses: ./.github/workflows/plugin-package.yml + with: + plugins: ${{ needs.get-plugins.outputs.plugins }} + version: ${{ needs.get-environment.outputs.version }} + release: ${{ needs.get-environment.outputs.release }} + secrets: + artifactory_username: ${{ secrets.REPOS_USERNAME }} + artifactory_password: ${{ secrets.REPOS_PASSWORD }} + + deliver: + needs: [get-environment, package] + if: ${{ contains(fromJson('["stable", "testing", "unstable"]'), needs.get-environment.outputs.stability) }} + uses: ./.github/workflows/plugin-delivery.yml + with: + version: ${{ needs.get-environment.outputs.version }} + release: ${{ needs.get-environment.outputs.release }} + stability: ${{ needs.get-environment.outputs.stability }} + secrets: + artifactory_username: ${{ secrets.NEXUS_USER }} + artifactory_password: ${{ secrets.NEXUS_PASSWD }} + update_repo_path: ${{ secrets.UPDATE_REPO_PATH }} + cloudfront_id: ${{ secrets.CLOUDFRONT_ID }} + yum_repo_address: ${{ secrets.YUM_REPO_ADDRESS }} + yum_repo_key: ${{ secrets.YUM_REPO_KEY }} diff --git a/centreon-plugins/LICENSE.txt b/LICENSE.txt similarity index 100% rename from centreon-plugins/LICENSE.txt rename to LICENSE.txt diff --git a/centreon-plugins/README.md b/README.md similarity index 100% rename from centreon-plugins/README.md rename to README.md diff --git a/centreon-plugins/Jenkinsfile b/centreon-plugins/Jenkinsfile deleted file mode 100644 index 24b32c00d..000000000 --- a/centreon-plugins/Jenkinsfile +++ /dev/null @@ -1,70 +0,0 @@ - -env.REF_BRANCH = 'master' -if ((env.BRANCH_NAME == env.REF_BRANCH)) { - env.BUILD = 'REFERENCE' - env.REPO = '22.10-unstable' -} - -stage('Source') { - node { - cleanWs() - sh 'setup_centreon_build.sh' - dir('centreon-plugins') { - checkout scm - } - sh './centreon-build/jobs/plugins/plugins-source.sh' - source = readProperties file: 'source.properties' - env.VERSION = "${source.VERSION}" - env.RELEASE = "${source.RELEASE}" - } -} - -stage('RPM/DEB Packaging') { - parallel 'RPM': { - node { - sh 'setup_centreon_build.sh' - sh './centreon-build/jobs/plugins/plugins-package.sh' - archiveArtifacts artifacts: 'rpms-centos7.tar.gz' - archiveArtifacts artifacts: 'rpms-alma8.tar.gz' - stash name: "rpms-centos7", includes: 'output-centos7/noarch/*.rpm' - stash name: "rpms-alma8", includes: 'output-alma8/noarch/*.rpm' - } - }, - 'package debian bullseye': { - node { - sh 'setup_centreon_build.sh' - sh './centreon-build/jobs/plugins/plugins-package-deb.sh' - archiveArtifacts artifacts: '*.deb' - stash name: "Debian11", includes: '*.deb' - } - } - if ((currentBuild.result ?: 'SUCCESS') != 'SUCCESS') { - error('Package stage failure.'); - } -} - -stage('RPM Delivery') { - parallel 'rpm delivery': { - node { - sh 'setup_centreon_build.sh' - unstash 'rpms-centos7' - unstash 'rpms-alma8' - sh './centreon-build/jobs/plugins/plugins-delivery.sh' - } - }, - 'deliver debian bullseye': { - node { - withCredentials([usernamePassword(credentialsId: 'nexus-credentials', passwordVariable: 'NEXUS_PASSWORD', usernameVariable: 'NEXUS_USERNAME')]) { - checkout scm - unstash "Debian11" - sh ''' - find -name "*.deb" -print0 | xargs -0 -t -I % -P 2 curl -u $NEXUS_USERNAME:$NEXUS_PASSWORD -H "Content-Type: multipart/form-data" --data-binary "@%" https://apt.centreon.com/repository/$REPO/ - ''' - } - } - } - if ((currentBuild.result ?: 'SUCCESS') != 'SUCCESS') { - error('Package stage failure.'); - } -} - diff --git a/centreon-plugins/changelog b/changelog similarity index 100% rename from centreon-plugins/changelog rename to changelog diff --git a/centreon-plugins/doc/en/Makefile b/doc/en/Makefile similarity index 100% rename from centreon-plugins/doc/en/Makefile rename to doc/en/Makefile diff --git a/centreon-plugins/doc/en/conf.py b/doc/en/conf.py similarity index 100% rename from centreon-plugins/doc/en/conf.py rename to doc/en/conf.py diff --git a/centreon-plugins/doc/en/developer/guide.md b/doc/en/developer/guide.md similarity index 100% rename from centreon-plugins/doc/en/developer/guide.md rename to doc/en/developer/guide.md diff --git a/centreon-plugins/doc/en/developer/index.rst b/doc/en/developer/index.rst similarity index 100% rename from centreon-plugins/doc/en/developer/index.rst rename to doc/en/developer/index.rst diff --git a/centreon-plugins/doc/en/index.rst b/doc/en/index.rst similarity index 100% rename from centreon-plugins/doc/en/index.rst rename to doc/en/index.rst diff --git a/centreon-plugins/doc/en/user/guide.rst b/doc/en/user/guide.rst similarity index 100% rename from centreon-plugins/doc/en/user/guide.rst rename to doc/en/user/guide.rst diff --git a/centreon-plugins/doc/en/user/index.rst b/doc/en/user/index.rst similarity index 100% rename from centreon-plugins/doc/en/user/index.rst rename to doc/en/user/index.rst diff --git a/centreon-plugins/doc/fr/Makefile b/doc/fr/Makefile similarity index 100% rename from centreon-plugins/doc/fr/Makefile rename to doc/fr/Makefile diff --git a/centreon-plugins/doc/fr/conf.py b/doc/fr/conf.py similarity index 100% rename from centreon-plugins/doc/fr/conf.py rename to doc/fr/conf.py diff --git a/centreon-plugins/doc/fr/developer/guide.rst b/doc/fr/developer/guide.rst similarity index 100% rename from centreon-plugins/doc/fr/developer/guide.rst rename to doc/fr/developer/guide.rst diff --git a/centreon-plugins/doc/fr/developer/index.rst b/doc/fr/developer/index.rst similarity index 100% rename from centreon-plugins/doc/fr/developer/index.rst rename to doc/fr/developer/index.rst diff --git a/centreon-plugins/doc/fr/index.rst b/doc/fr/index.rst similarity index 100% rename from centreon-plugins/doc/fr/index.rst rename to doc/fr/index.rst diff --git a/centreon-plugins/doc/fr/user/guide.rst b/doc/fr/user/guide.rst similarity index 100% rename from centreon-plugins/doc/fr/user/guide.rst rename to doc/fr/user/guide.rst diff --git a/centreon-plugins/doc/fr/user/index.rst b/doc/fr/user/index.rst similarity index 100% rename from centreon-plugins/doc/fr/user/index.rst rename to doc/fr/user/index.rst diff --git a/packaging/README.md b/packaging/README.md new file mode 100644 index 000000000..20254b5c2 --- /dev/null +++ b/packaging/README.md @@ -0,0 +1,255 @@ +# Centreon Plugins continuous integration + +## Introduction + +Centreon Plugins continuous integration is carried by the Centreon Build project. +This allow easy delivery of plugins on public repositories and better follow-up of changes. + +This documentation presents the workflows to build and deliver packaged plugins on +unstable, testing and stable repositories. + +### Basic principles + +Packaged plugins are formed by two components: + +* Source code from [Centreon-Plugins]() project, +* Configuration files for standalone plugin files build and package dependencies management. + +Those configuration files are hosted in this project. + +### Continuous integration workflows + +As the packaging process is based on two components, the CI can be triggered by both. + +![workflow](.images/ci_workflow.png "Continuous integration workflows") + +* Each time a commit is made on Centreon Plugins master branch, a build is automatically launched (green arrows), +* Each time a new plugin configuration files are added, or existing files modified, a build as to + be launched manually (purple arrows). + +The Jenkins job in charge of building unstable packages is the +[Centreon EPP/Centreon Plugins/master]() job. + +For each successful jobs, packages will be available on the unstable repositories: + +* 2.8/CentOS 7: , +* 18.10/CentOS 7: . + +Each time stamped subdirectories represents a successful build. + +To make a build goes from unstable to testing, the +[centreon-plugins-testing]() job +should be launched. +This job needs a version and a release number: + +* The version is the date of the unstable build considered as the most mature, +* The release number is the time of the unstable build considered as the most mature. + +For each successful jobs, packages will be available on the testing repositories: + +* 2.8/CentOS 7: , +* 18.10/CentOS 7: . + +To make a build goes from testing to stable, the +[centreon-plugins-stable]() job +should be launched. +It takes the same parameters as the testing job. + +Packages are now available on standard stable repositories. + +## How to create a new packaged plugin + +### Clone Centreon Build project + +Clone the master branch of the Centreon Build project + +```bash +# git clone https://github.com/centreon/centreon-build +``` + +### Create configuration files + +#### Create new directory + +In the *centreon-build/packaging/plugins* directory, create a new directory. + +```bash +# cd centreon-build/packaging/plugins +# mkdir centreon-plugin- +``` + +The name of the package is generaly made from the tree of the plugin's source code but with some +specificities, for examples: + +* *centreon-plugin-Network-Huawei-Snmp* plugin is for *network/huawei/snmp/* source code, +* *centreon-plugin-Applications-Antivirus-Kaspersky-Snmp* plugin is for *apps/antivirus/kaspersky/snmp/* source code, +* *centreon-plugin-Network-Firewalls-Paloalto-Standard-Snmp* plugin is for *network/paloalto/snmp/* source code. + +Ask slack *#software-plugin-packs* channel to confirm name if needed. + +#### Create standalone plugin configuration file + +In the previously created directory, create a new JSON file named *pkg.json*. + +In this file must appear the following mandatory entries: + +* *pkg_name*: name of the package, same than the parent directory, +* *pkg_summary*: short string describing the plugin, starting with "Centreon Plugin to monitor", +* *plugin_name*: name of the standalone plugin file, starting with "centreon_" and made of words making this file unique, +* *files*: table listing all files that should be included in the standalone file, like common code and specific plugin code. + +For example: + +```bash +{ + "pkg_name": "centreon-plugin-Applications-Antivirus-Kaspersky-Snmp", + "pkg_summary": "Centreon Plugin to monitor Kaspersky Security Center using SNMP", + "plugin_name": "centreon_kaspersky_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "apps/antivirus/kaspersky/snmp/" + ] +} +``` + +The following files are included by default: + +* centreon/plugins/alternative/Getopt.pm, +* centreon/plugins/alternative/FatPackerOptions.pm, +* centreon/plugins/misc.pm, +* centreon/plugins/mode.pm, +* centreon/plugins/multi.pm, +* centreon/plugins/options.pm, +* centreon/plugins/output.pm, +* centreon/plugins/perfdata.pm, +* centreon/plugins/script.pm, +* centreon/plugins/statefile.pm, +* centreon/plugins/templates/counter.pm, +* centreon/plugins/templates/hardware.pm, +* centreon/plugins/values.pm. + +Extra entries can be used, for example to make a package obsoleting another one: + +```bash + "custom_pkg_data": "Obsoletes: centreon-plugin-Old-Plugin", +``` + +#### Create package dependencies management files + +In the previously created directory, create two new JSON files named *rpm.json* and *deb.json*. + +In this files must appear the following mandatory entry: + +* *dependencies*: table listing all the perl dependencies that should be installed (does not include Perl core libraries), + +Example of *rpm.json* file: + +```bash +{ + "dependencies": [ + "perl(SNMP)", + "perl(DateTime)" + ] +} +``` + +Example of *deb.json* file: + +```bash +{ + "dependencies": [ + "libsnmp-perl", + "libdatetime-perl" + ] +} +``` + +### Commit and push changes + +In the project directory, create a new branch: + +```bash +# git checkout -B add-my-new-plugin +``` + +Add the new directory and files to be commited: + +```bash +# git add packaging/plugins/centreon-plugin-My-Plugin +``` + +Commit the changes, respecting project format: + +```bash +# git commit -m "feat(plugin): add new my-plugin json files" +``` + +Push the commit to your own fork: + +```bash +# git push https://github.com//centreon-build add-my-new-plugin +``` + +Create a new pull request on the project and wait for the build team to accept it. + +### Launch a Jenkins build + +From the Jenkins *Centreon EPP* tab, launch the Centreon Plugins/master job +() + +If the build succeed, the new plugin will be available on unstable repositories. + +## How to edit a packaged plugin + +### Clone Centreon Build project + +Clone the master branch of the Centreon Build project + +```bash +# git clone https://github.com/centreon/centreon-build +``` + +### Edit configuration files + +In the plugin configuration files directory, edit either *pkg.json*, *rpm.json* or *deb.json* files. + +```bash +# cd centreon-build/packaging/plugins/centreon-plugin-My-Plugin +# vi pkg.json +``` + +### Commit and push changes + +In the project directory, create a new branch: + +```bash +# git checkout -B fix-my-plugin +``` + +Add the modified files to be commited: + +```bash +# git add packaging/plugins/centreon-plugin-My-Plugin/pkg.json +``` + +Commit the changes, respecting project format: + +```bash +# git commit -m "fix(plugin): fix my-plugin pkg.json file, adding common code" +``` + +Push the commit to your own fork: + +```bash +# git push https://github.com//centreon-build fix-my-plugin +``` + +Create a new pull request on the project and wait for the build team to accept it. + +### Launch a Jenkins build + +From the Jenkins *Centreon EPP* tab, launch the Centreon Plugins/master job +() + +If the build succeed, the new plugin will be available on unstable repositories. diff --git a/packaging/centreon-plugin-Applications-ActiveDirectory-Wsman/deb.json b/packaging/centreon-plugin-Applications-ActiveDirectory-Wsman/deb.json new file mode 100644 index 000000000..4b6b4a6be --- /dev/null +++ b/packaging/centreon-plugin-Applications-ActiveDirectory-Wsman/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libopenwsman-perl", + "libxml-simple-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-ActiveDirectory-Wsman/pkg.json b/packaging/centreon-plugin-Applications-ActiveDirectory-Wsman/pkg.json new file mode 100644 index 000000000..f909cef68 --- /dev/null +++ b/packaging/centreon-plugin-Applications-ActiveDirectory-Wsman/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Applications-ActiveDirectory-Wsman", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_activedirectory_wsman.pl", + "files": [ + "centreon/plugins/script_wsman.pm", + "centreon/plugins/wsman.pm", + "apps/microsoft/activedirectory/wsman/" + ] +} diff --git a/packaging/centreon-plugin-Applications-ActiveDirectory-Wsman/rpm.json b/packaging/centreon-plugin-Applications-ActiveDirectory-Wsman/rpm.json new file mode 100644 index 000000000..53651a5cb --- /dev/null +++ b/packaging/centreon-plugin-Applications-ActiveDirectory-Wsman/rpm.json @@ -0,0 +1,8 @@ +{ + "dependencies": [ + "perl(openwsman)", + "perl(POSIX)", + "perl(Time::HiRes)", + "perl(XML::Simple)" + ] +} diff --git a/packaging/centreon-plugin-Applications-ActiveMQ-Jmx/deb.json b/packaging/centreon-plugin-Applications-ActiveMQ-Jmx/deb.json new file mode 100644 index 000000000..41a67333c --- /dev/null +++ b/packaging/centreon-plugin-Applications-ActiveMQ-Jmx/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libjmx4perl-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-ActiveMQ-Jmx/pkg.json b/packaging/centreon-plugin-Applications-ActiveMQ-Jmx/pkg.json new file mode 100644 index 000000000..77af3ae98 --- /dev/null +++ b/packaging/centreon-plugin-Applications-ActiveMQ-Jmx/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Applications-ActiveMQ-Jmx", + "pkg_summary": "Centreon Plugin to monitor ActiveMQ application using JMX", + "plugin_name": "centreon_activemq_jmx.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/common/protocols/jmx/", + "apps/mq/activemq/jmx/" + ] +} diff --git a/packaging/centreon-plugin-Applications-ActiveMQ-Jmx/rpm.json b/packaging/centreon-plugin-Applications-ActiveMQ-Jmx/rpm.json new file mode 100644 index 000000000..5d2a81f7a --- /dev/null +++ b/packaging/centreon-plugin-Applications-ActiveMQ-Jmx/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(JMX::Jmx4Perl)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Ansible-Cli/deb.json b/packaging/centreon-plugin-Applications-Ansible-Cli/deb.json new file mode 100644 index 000000000..0d141ee0d --- /dev/null +++ b/packaging/centreon-plugin-Applications-Ansible-Cli/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libssh-session-perl", + "plink" + ] +} diff --git a/packaging/centreon-plugin-Applications-Ansible-Cli/pkg.json b/packaging/centreon-plugin-Applications-Ansible-Cli/pkg.json new file mode 100644 index 000000000..389e24cbd --- /dev/null +++ b/packaging/centreon-plugin-Applications-Ansible-Cli/pkg.json @@ -0,0 +1,12 @@ +{ + "pkg_name": "centreon-plugin-Applications-Ansible-Cli", + "pkg_summary": "Centreon Plugin to interact with Ansible using CLI", + "plugin_name": "centreon_ansible_cli.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/plugins/script_custom/cli.pm", + "centreon/plugins/backend/ssh/", + "centreon/plugins/ssh.pm", + "apps/automation/ansible/cli/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Ansible-Cli/rpm.json b/packaging/centreon-plugin-Applications-Ansible-Cli/rpm.json new file mode 100644 index 000000000..fb54a67a9 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Ansible-Cli/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(Libssh::Session)", + "plink" + ] +} diff --git a/packaging/centreon-plugin-Applications-Ansible-Tower/deb.json b/packaging/centreon-plugin-Applications-Ansible-Tower/deb.json new file mode 100644 index 000000000..b846a6b30 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Ansible-Tower/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libtime-parsedate-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Ansible-Tower/pkg.json b/packaging/centreon-plugin-Applications-Ansible-Tower/pkg.json new file mode 100644 index 000000000..e8cf74834 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Ansible-Tower/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Ansible-Tower", + "pkg_summary": "Centreon Plugin to monitor Ansible Tower using Tower CLI", + "plugin_name": "centreon_ansible_tower.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/automation/ansible/tower/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Ansible-Tower/rpm.json b/packaging/centreon-plugin-Applications-Ansible-Tower/rpm.json new file mode 100644 index 000000000..0422faade --- /dev/null +++ b/packaging/centreon-plugin-Applications-Ansible-Tower/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(Date::Parse)" + ] +} diff --git a/packaging/centreon-plugin-Applications-Antivirus-Clamav-Ssh/deb.json b/packaging/centreon-plugin-Applications-Antivirus-Clamav-Ssh/deb.json new file mode 100644 index 000000000..21f204f89 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Antivirus-Clamav-Ssh/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "plink", + "libssh-session-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Antivirus-Clamav-Ssh/pkg.json b/packaging/centreon-plugin-Applications-Antivirus-Clamav-Ssh/pkg.json new file mode 100644 index 000000000..d735cdb1a --- /dev/null +++ b/packaging/centreon-plugin-Applications-Antivirus-Clamav-Ssh/pkg.json @@ -0,0 +1,12 @@ +{ + "pkg_name": "centreon-plugin-Applications-Clamav-Ssh", + "pkg_summary": "Centreon Plugin to monitor ClamAV antivirus engine through SSH", + "plugin_name": "centreon_clamav_ssh.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/plugins/script_custom/cli.pm", + "centreon/plugins/backend/ssh/", + "centreon/plugins/ssh.pm", + "apps/antivirus/clamav/local/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Antivirus-Clamav-Ssh/rpm.json b/packaging/centreon-plugin-Applications-Antivirus-Clamav-Ssh/rpm.json new file mode 100644 index 000000000..ffebdf21e --- /dev/null +++ b/packaging/centreon-plugin-Applications-Antivirus-Clamav-Ssh/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "plink", + "perl(Libssh::Session)" + ] +} diff --git a/packaging/centreon-plugin-Applications-Antivirus-Kaspersky-Snmp/deb.json b/packaging/centreon-plugin-Applications-Antivirus-Kaspersky-Snmp/deb.json new file mode 100644 index 000000000..fc5f9d099 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Antivirus-Kaspersky-Snmp/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libsnmp-perl", + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Antivirus-Kaspersky-Snmp/pkg.json b/packaging/centreon-plugin-Applications-Antivirus-Kaspersky-Snmp/pkg.json new file mode 100644 index 000000000..1523a5efd --- /dev/null +++ b/packaging/centreon-plugin-Applications-Antivirus-Kaspersky-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Applications-Antivirus-Kaspersky-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_kaspersky_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "apps/antivirus/kaspersky/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Antivirus-Kaspersky-Snmp/rpm.json b/packaging/centreon-plugin-Applications-Antivirus-Kaspersky-Snmp/rpm.json new file mode 100644 index 000000000..26e66e331 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Antivirus-Kaspersky-Snmp/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(SNMP)", + "perl(DateTime)" + ] +} diff --git a/packaging/centreon-plugin-Applications-Antivirus-Mcafee-Webgateway-Snmp/deb.json b/packaging/centreon-plugin-Applications-Antivirus-Mcafee-Webgateway-Snmp/deb.json new file mode 100644 index 000000000..fc5f9d099 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Antivirus-Mcafee-Webgateway-Snmp/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libsnmp-perl", + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Antivirus-Mcafee-Webgateway-Snmp/pkg.json b/packaging/centreon-plugin-Applications-Antivirus-Mcafee-Webgateway-Snmp/pkg.json new file mode 100644 index 000000000..85bdd3ade --- /dev/null +++ b/packaging/centreon-plugin-Applications-Antivirus-Mcafee-Webgateway-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Applications-Antivirus-Mcafee-Webgateway-Snmp", + "pkg_summary": "Centreon Plugin to monitor McAfee Web Gateway application using SNMP", + "plugin_name": "centreon_mcafee_webgateway_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "apps/antivirus/mcafee/webgateway/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Antivirus-Mcafee-Webgateway-Snmp/rpm.json b/packaging/centreon-plugin-Applications-Antivirus-Mcafee-Webgateway-Snmp/rpm.json new file mode 100644 index 000000000..25a7787aa --- /dev/null +++ b/packaging/centreon-plugin-Applications-Antivirus-Mcafee-Webgateway-Snmp/rpm.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "perl(SNMP)", + "perl(Digest::MD5)", + "perl(DateTime)" + ] +} diff --git a/packaging/centreon-plugin-Applications-Awa-Jmx/deb.json b/packaging/centreon-plugin-Applications-Awa-Jmx/deb.json new file mode 100644 index 000000000..41a67333c --- /dev/null +++ b/packaging/centreon-plugin-Applications-Awa-Jmx/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libjmx4perl-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Awa-Jmx/pkg.json b/packaging/centreon-plugin-Applications-Awa-Jmx/pkg.json new file mode 100644 index 000000000..1c8d5867e --- /dev/null +++ b/packaging/centreon-plugin-Applications-Awa-Jmx/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Applications-Awa-Jmx", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_awa_jmx.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/common/protocols/jmx/", + "centreon/common/jvm", + "apps/java/awa/jmx/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Awa-Jmx/rpm.json b/packaging/centreon-plugin-Applications-Awa-Jmx/rpm.json new file mode 100644 index 000000000..5d2a81f7a --- /dev/null +++ b/packaging/centreon-plugin-Applications-Awa-Jmx/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(JMX::Jmx4Perl)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Backup-Emc-Recoverypoint-Ssh/deb.json b/packaging/centreon-plugin-Applications-Backup-Emc-Recoverypoint-Ssh/deb.json new file mode 100644 index 000000000..0d141ee0d --- /dev/null +++ b/packaging/centreon-plugin-Applications-Backup-Emc-Recoverypoint-Ssh/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libssh-session-perl", + "plink" + ] +} diff --git a/packaging/centreon-plugin-Applications-Backup-Emc-Recoverypoint-Ssh/pkg.json b/packaging/centreon-plugin-Applications-Backup-Emc-Recoverypoint-Ssh/pkg.json new file mode 100644 index 000000000..de23e42e9 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Backup-Emc-Recoverypoint-Ssh/pkg.json @@ -0,0 +1,12 @@ +{ + "pkg_name": "centreon-plugin-Applications-Backup-Emc-Recoverypoint-Ssh", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_emc_recoverypoint.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/plugins/script_custom/cli.pm", + "centreon/plugins/backend/ssh/", + "centreon/plugins/ssh.pm", + "storage/emc/recoverypoint/ssh/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Backup-Emc-Recoverypoint-Ssh/rpm.json b/packaging/centreon-plugin-Applications-Backup-Emc-Recoverypoint-Ssh/rpm.json new file mode 100644 index 000000000..06b23e95f --- /dev/null +++ b/packaging/centreon-plugin-Applications-Backup-Emc-Recoverypoint-Ssh/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(Libssh::Session)", + "plink" + ] +} diff --git a/packaging/centreon-plugin-Applications-Bind9-Web/deb.json b/packaging/centreon-plugin-Applications-Bind9-Web/deb.json new file mode 100644 index 000000000..551459862 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Bind9-Web/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libxml-xpath-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Bind9-Web/pkg.json b/packaging/centreon-plugin-Applications-Bind9-Web/pkg.json new file mode 100644 index 000000000..c24419c27 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Bind9-Web/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Bind9-Web", + "pkg_summary": "Centreon Plugin Bind9", + "plugin_name": "centreon_bind9_web.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/bind9/web/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Bind9-Web/rpm.json b/packaging/centreon-plugin-Applications-Bind9-Web/rpm.json new file mode 100644 index 000000000..960424ee8 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Bind9-Web/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(XML::XPath)" + ] +} diff --git a/packaging/centreon-plugin-Applications-Biztalk/deb.json b/packaging/centreon-plugin-Applications-Biztalk/deb.json new file mode 100644 index 000000000..bf3c085d1 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Biztalk/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdbi-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Biztalk/pkg.json b/packaging/centreon-plugin-Applications-Biztalk/pkg.json new file mode 100644 index 000000000..3c14a4a45 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Biztalk/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Applications-Biztalk", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_biztalk.pl", + "files": [ + "centreon/plugins/script_sql.pm", + "centreon/plugins/dbi.pm", + "database/mssql/", + "apps/biztalk/sql/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Biztalk/rpm.json b/packaging/centreon-plugin-Applications-Biztalk/rpm.json new file mode 100644 index 000000000..6210b04d7 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Biztalk/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(DBI)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Bluemind-Ssh/deb.json b/packaging/centreon-plugin-Applications-Bluemind-Ssh/deb.json new file mode 100644 index 000000000..21f204f89 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Bluemind-Ssh/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "plink", + "libssh-session-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Bluemind-Ssh/pkg.json b/packaging/centreon-plugin-Applications-Bluemind-Ssh/pkg.json new file mode 100644 index 000000000..ee3b3fc44 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Bluemind-Ssh/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Applications-Bluemind-Ssh", + "pkg_summary": "Centreon Plugin Bluemind SSH", + "plugin_name": "centreon_bluemind_ssh.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/plugins/backend/ssh/", + "centreon/plugins/ssh.pm", + "apps/bluemind/local/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Bluemind-Ssh/rpm.json b/packaging/centreon-plugin-Applications-Bluemind-Ssh/rpm.json new file mode 100644 index 000000000..60fcdb79d --- /dev/null +++ b/packaging/centreon-plugin-Applications-Bluemind-Ssh/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "plink", + "perl(Libssh::Session)" + ] +} diff --git a/packaging/centreon-plugin-Applications-Ceph-Restapi/deb.json b/packaging/centreon-plugin-Applications-Ceph-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Ceph-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Ceph-Restapi/pkg.json b/packaging/centreon-plugin-Applications-Ceph-Restapi/pkg.json new file mode 100644 index 000000000..3edc626bb --- /dev/null +++ b/packaging/centreon-plugin-Applications-Ceph-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Ceph-Restapi", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_ceph_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/ceph/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Ceph-Restapi/rpm.json b/packaging/centreon-plugin-Applications-Ceph-Restapi/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Ceph-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Cisco-Cms-Restapi/deb.json b/packaging/centreon-plugin-Applications-Cisco-Cms-Restapi/deb.json new file mode 100644 index 000000000..3cdcfb1f1 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Cisco-Cms-Restapi/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libxml-simple-perl", + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Cisco-Cms-Restapi/pkg.json b/packaging/centreon-plugin-Applications-Cisco-Cms-Restapi/pkg.json new file mode 100644 index 000000000..80e24d4c1 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Cisco-Cms-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Cisco-Cms-Restapi", + "pkg_summary": "Centreon Plugin to monitor Cisco CMS (Cisco Meeting Server) using RestAPI", + "plugin_name": "centreon_cisco_cms_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/cisco/cms/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Cisco-Cms-Restapi/rpm.json b/packaging/centreon-plugin-Applications-Cisco-Cms-Restapi/rpm.json new file mode 100644 index 000000000..f81676a51 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Cisco-Cms-Restapi/rpm.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "perl(XML::Simple)", + "perl(DateTime)", + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Applications-Cisco-Dnac-Restapi/deb.json b/packaging/centreon-plugin-Applications-Cisco-Dnac-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Cisco-Dnac-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Cisco-Dnac-Restapi/pkg.json b/packaging/centreon-plugin-Applications-Cisco-Dnac-Restapi/pkg.json new file mode 100644 index 000000000..d07c7cf06 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Cisco-Dnac-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Cisco-Dnac-Restapi", + "pkg_summary": "Centreon Plugin to monitor Cisco DNA Center using Rest API", + "plugin_name": "centreon_cisco_dnac_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/cisco/dnac/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Cisco-Dnac-Restapi/rpm.json b/packaging/centreon-plugin-Applications-Cisco-Dnac-Restapi/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Cisco-Dnac-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Cisco-Ise-Restapi/deb.json b/packaging/centreon-plugin-Applications-Cisco-Ise-Restapi/deb.json new file mode 100644 index 000000000..3cdcfb1f1 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Cisco-Ise-Restapi/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libxml-simple-perl", + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Cisco-Ise-Restapi/pkg.json b/packaging/centreon-plugin-Applications-Cisco-Ise-Restapi/pkg.json new file mode 100644 index 000000000..c5efed780 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Cisco-Ise-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Cisco-Ise-Restapi", + "pkg_summary": "Centreon Plugin to monitor Cisco ISE (Identity Services Engine) using RestAPI", + "plugin_name": "centreon_cisco_ise_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/cisco/ise/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Cisco-Ise-Restapi/rpm.json b/packaging/centreon-plugin-Applications-Cisco-Ise-Restapi/rpm.json new file mode 100644 index 000000000..f81676a51 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Cisco-Ise-Restapi/rpm.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "perl(XML::Simple)", + "perl(DateTime)", + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Applications-Cisco-Ssms-Restapi/deb.json b/packaging/centreon-plugin-Applications-Cisco-Ssms-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Cisco-Ssms-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Cisco-Ssms-Restapi/pkg.json b/packaging/centreon-plugin-Applications-Cisco-Ssms-Restapi/pkg.json new file mode 100644 index 000000000..8a8ce7bd7 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Cisco-Ssms-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Cisco-Ssms-Restapi", + "pkg_summary": "Centreon Plugin to monitor Cisco Smart Software Manager Satellite using RestAPI", + "plugin_name": "centreon_cisco_ssms_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/cisco/ssms/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Cisco-Ssms-Restapi/rpm.json b/packaging/centreon-plugin-Applications-Cisco-Ssms-Restapi/rpm.json new file mode 100644 index 000000000..a25aaf290 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Cisco-Ssms-Restapi/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + ], + "custom_pkg_data": "Obsoletes: centreon-plugin-Network-Cisco-Ssms-Restapi" +} diff --git a/packaging/centreon-plugin-Applications-Commvault-Commserve-Restapi/deb.json b/packaging/centreon-plugin-Applications-Commvault-Commserve-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Commvault-Commserve-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Commvault-Commserve-Restapi/pkg.json b/packaging/centreon-plugin-Applications-Commvault-Commserve-Restapi/pkg.json new file mode 100644 index 000000000..19e0d8d95 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Commvault-Commserve-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Commvault-Commserve-Restapi", + "pkg_summary": "Centreon Plugin to monitor Commvault Commserve using Rest API", + "plugin_name": "centreon_commvault_commserve_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/backup/commvault/commserve/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Commvault-Commserve-Restapi/rpm.json b/packaging/centreon-plugin-Applications-Commvault-Commserve-Restapi/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Commvault-Commserve-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Databases-Cassandra-Jmx/deb.json b/packaging/centreon-plugin-Applications-Databases-Cassandra-Jmx/deb.json new file mode 100644 index 000000000..41a67333c --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Cassandra-Jmx/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libjmx4perl-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Databases-Cassandra-Jmx/pkg.json b/packaging/centreon-plugin-Applications-Databases-Cassandra-Jmx/pkg.json new file mode 100644 index 000000000..90594eabc --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Cassandra-Jmx/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Applications-Database-Cassandra-Jmx", + "pkg_summary": "Centreon Plugin to monitor Database Cassandra using Jmx protocol", + "plugin_name": "centreon_cassandra_jmx.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/common/protocols/jmx/", + "database/cassandra/jmx/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Databases-Cassandra-Jmx/rpm.json b/packaging/centreon-plugin-Applications-Databases-Cassandra-Jmx/rpm.json new file mode 100644 index 000000000..5d2a81f7a --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Cassandra-Jmx/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(JMX::Jmx4Perl)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Databases-Couchdb-Restapi/deb.json b/packaging/centreon-plugin-Applications-Databases-Couchdb-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Couchdb-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Databases-Couchdb-Restapi/pkg.json b/packaging/centreon-plugin-Applications-Databases-Couchdb-Restapi/pkg.json new file mode 100644 index 000000000..5549a9e66 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Couchdb-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Database-Couchdb-Restapi", + "pkg_summary": "Centreon Plugin to monitor Database CouchDB using Rest API", + "plugin_name": "centreon_couchdb_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "database/couchdb/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Databases-Couchdb-Restapi/rpm.json b/packaging/centreon-plugin-Applications-Databases-Couchdb-Restapi/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Couchdb-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Databases-Db2/deb.json b/packaging/centreon-plugin-Applications-Databases-Db2/deb.json new file mode 100644 index 000000000..acffec867 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Db2/deb.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "libdbi-perl", + "libtime-hires-perl", + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Databases-Db2/pkg.json b/packaging/centreon-plugin-Applications-Databases-Db2/pkg.json new file mode 100644 index 000000000..d2170beeb --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Db2/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Applications-Databases-Db2", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_database_db2.pl", + "files": [ + "centreon/plugins/script_sql.pm", + "centreon/plugins/dbi.pm", + "centreon/common/protocols/sql/", + "database/db2/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Databases-Db2/rpm.json b/packaging/centreon-plugin-Applications-Databases-Db2/rpm.json new file mode 100644 index 000000000..19da9877d --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Db2/rpm.json @@ -0,0 +1,8 @@ +{ + "dependencies": [ + "perl(DBI)", + "perl(Time::HiRes)", + "perl(DateTime)", + "perl(POSIX)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Databases-Elasticsearch/deb.json b/packaging/centreon-plugin-Applications-Databases-Elasticsearch/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Elasticsearch/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Databases-Elasticsearch/pkg.json b/packaging/centreon-plugin-Applications-Databases-Elasticsearch/pkg.json new file mode 100644 index 000000000..6af1b78b6 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Elasticsearch/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Databases-Elasticsearch", + "pkg_summary": "Centreon Plugin to monitor Elasticsearch databases using RestAPI", + "plugin_name": "centreon_elasticsearch.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "database/elasticsearch/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Databases-Elasticsearch/rpm.json b/packaging/centreon-plugin-Applications-Databases-Elasticsearch/rpm.json new file mode 100644 index 000000000..081c4492e --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Elasticsearch/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + ], + "custom_pkg_data": "Obsoletes: centreon-plugin-Applications-Elasticsearch" +} diff --git a/packaging/centreon-plugin-Applications-Databases-Firebird/deb.json b/packaging/centreon-plugin-Applications-Databases-Firebird/deb.json new file mode 100644 index 000000000..bf3c085d1 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Firebird/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdbi-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Databases-Firebird/pkg.json b/packaging/centreon-plugin-Applications-Databases-Firebird/pkg.json new file mode 100644 index 000000000..afa25f49e --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Firebird/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Applications-Databases-Firebird", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_database_firebird.pl", + "files": [ + "centreon/plugins/script_sql.pm", + "centreon/plugins/dbi.pm", + "centreon/common/protocols/sql/", + "database/firebird/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Databases-Firebird/rpm.json b/packaging/centreon-plugin-Applications-Databases-Firebird/rpm.json new file mode 100644 index 000000000..9e8f2991c --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Firebird/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(DBI)", + "perl(Time::HiRes)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Databases-Influxdb/deb.json b/packaging/centreon-plugin-Applications-Databases-Influxdb/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Influxdb/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Databases-Influxdb/pkg.json b/packaging/centreon-plugin-Applications-Databases-Influxdb/pkg.json new file mode 100644 index 000000000..70f02f93c --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Influxdb/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Databases-Influxdb", + "pkg_summary": "Centreon Plugin to monitor InfluxDB databases using RestAPI", + "plugin_name": "centreon_influxdb.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "database/influxdb/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Databases-Influxdb/rpm.json b/packaging/centreon-plugin-Applications-Databases-Influxdb/rpm.json new file mode 100644 index 000000000..f8b2df449 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Influxdb/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(Time::HiRes)", + "perl(DateTime)" + ] +} diff --git a/packaging/centreon-plugin-Applications-Databases-Informix-Snmp/deb.json b/packaging/centreon-plugin-Applications-Databases-Informix-Snmp/deb.json new file mode 100644 index 000000000..fc5f9d099 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Informix-Snmp/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libsnmp-perl", + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Databases-Informix-Snmp/pkg.json b/packaging/centreon-plugin-Applications-Databases-Informix-Snmp/pkg.json new file mode 100644 index 000000000..1dc38af35 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Informix-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Applications-Databases-Informix-Snmp", + "pkg_summary": "Centreon Plugin to monitor Informix database in SNMP", + "plugin_name": "centreon_informix_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "database/informix/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Databases-Informix-Snmp/rpm.json b/packaging/centreon-plugin-Applications-Databases-Informix-Snmp/rpm.json new file mode 100644 index 000000000..26e66e331 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Informix-Snmp/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(SNMP)", + "perl(DateTime)" + ] +} diff --git a/packaging/centreon-plugin-Applications-Databases-Informix/deb.json b/packaging/centreon-plugin-Applications-Databases-Informix/deb.json new file mode 100644 index 000000000..34cd170e4 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Informix/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdbi-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Databases-Informix/pkg.json b/packaging/centreon-plugin-Applications-Databases-Informix/pkg.json new file mode 100644 index 000000000..c536f681d --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Informix/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Applications-Databases-Informix", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_informix.pl", + "files": [ + "centreon/plugins/dbi.pm", + "centreon/plugins/script_sql.pm", + "centreon/common/protocols/sql/", + "database/informix/sql/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Databases-Informix/rpm.json b/packaging/centreon-plugin-Applications-Databases-Informix/rpm.json new file mode 100644 index 000000000..12fa8b254 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Informix/rpm.json @@ -0,0 +1,9 @@ +{ + "dependencies": [ + "perl(DBI)", + "perl(Digest::MD5)", + "perl(Data::Dumper)", + "perl(Time::HiRes)", + "perl(POSIX)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Databases-Mongodb/deb.json b/packaging/centreon-plugin-Applications-Databases-Mongodb/deb.json new file mode 100644 index 000000000..d5572c448 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Mongodb/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libdatetime-perl", + "libmongodb-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Databases-Mongodb/pkg.json b/packaging/centreon-plugin-Applications-Databases-Mongodb/pkg.json new file mode 100644 index 000000000..fef665209 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Mongodb/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Databases-Mongodb", + "pkg_summary": "Centreon Plugin to monitor MongoDB databases using pure perl MongoDB driver", + "plugin_name": "centreon_mongodb.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "database/mongodb/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Databases-Mongodb/rpm.json b/packaging/centreon-plugin-Applications-Databases-Mongodb/rpm.json new file mode 100644 index 000000000..e0d73e9dd --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Mongodb/rpm.json @@ -0,0 +1,9 @@ +{ + "dependencies": [ + "perl(Time::HiRes)", + "perl(DateTime)", + "perl(MongoDB)", + "perl(Hash::Ordered)", + "perl(URI::Encode)" + ] +} diff --git a/packaging/centreon-plugin-Applications-Databases-Mssql/deb.json b/packaging/centreon-plugin-Applications-Databases-Mssql/deb.json new file mode 100644 index 000000000..5f4a6d949 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Mssql/deb.json @@ -0,0 +1,8 @@ +{ + "dependencies": [ + "libdbi-perl", + "libdbd-sybase-perl", + "freetds-bin", + "unixodbc" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Databases-Mssql/pkg.json b/packaging/centreon-plugin-Applications-Databases-Mssql/pkg.json new file mode 100644 index 000000000..87fed4195 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Mssql/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Applications-Databases-Mssql", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_mssql.pl", + "files": [ + "centreon/plugins/script_sql.pm", + "centreon/plugins/dbi.pm", + "centreon/common/protocols/sql", + "database/mssql/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Databases-Mssql/rpm.json b/packaging/centreon-plugin-Applications-Databases-Mssql/rpm.json new file mode 100644 index 000000000..5a0276c88 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Mssql/rpm.json @@ -0,0 +1,11 @@ +{ + "dependencies": [ + "perl(DBI)", + "perl(Digest::MD5)", + "perl(Time::HiRes)", + "perl(POSIX)", + "perl(DBD::Sybase)", + "freetds", + "unixODBC" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Databases-Mysql/deb.json b/packaging/centreon-plugin-Applications-Databases-Mysql/deb.json new file mode 100644 index 000000000..138c96f60 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Mysql/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libdbi-perl", + "libdbd-mysql-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Databases-Mysql/pkg.json b/packaging/centreon-plugin-Applications-Databases-Mysql/pkg.json new file mode 100644 index 000000000..8a20c3f82 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Mysql/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Applications-Databases-Mysql", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_mysql.pl", + "files": [ + "centreon/plugins/script_sql.pm", + "centreon/plugins/dbi.pm", + "centreon/common/protocols/sql/", + "database/mysql/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Databases-Mysql/rpm.json b/packaging/centreon-plugin-Applications-Databases-Mysql/rpm.json new file mode 100644 index 000000000..4413f3936 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Mysql/rpm.json @@ -0,0 +1,8 @@ +{ + "dependencies": [ + "perl(DBI)", + "perl(DBD::mysql)", + "perl(Time::HiRes)", + "perl(POSIX)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Databases-Oracle/deb.json b/packaging/centreon-plugin-Applications-Databases-Oracle/deb.json new file mode 100644 index 000000000..aec0cfe24 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Oracle/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libdbi-perl", + "libdatetime-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Databases-Oracle/pkg.json b/packaging/centreon-plugin-Applications-Databases-Oracle/pkg.json new file mode 100644 index 000000000..50bd9fc95 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Oracle/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Applications-Databases-Oracle", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_oracle.pl", + "files": [ + "centreon/plugins/script_sql.pm", + "centreon/plugins/dbi.pm", + "centreon/common/protocols/sql/", + "database/oracle/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Databases-Oracle/rpm.json b/packaging/centreon-plugin-Applications-Databases-Oracle/rpm.json new file mode 100644 index 000000000..19da9877d --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Oracle/rpm.json @@ -0,0 +1,8 @@ +{ + "dependencies": [ + "perl(DBI)", + "perl(Time::HiRes)", + "perl(DateTime)", + "perl(POSIX)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Databases-Postgresql/deb.json b/packaging/centreon-plugin-Applications-Databases-Postgresql/deb.json new file mode 100644 index 000000000..bf3c085d1 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Postgresql/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdbi-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Databases-Postgresql/pkg.json b/packaging/centreon-plugin-Applications-Databases-Postgresql/pkg.json new file mode 100644 index 000000000..0de976f9b --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Postgresql/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Applications-Databases-Postgresql", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_postgresql.pl", + "files": [ + "centreon/plugins/script_sql.pm", + "centreon/plugins/dbi.pm", + "centreon/common/protocols/sql/", + "database/postgres/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Databases-Postgresql/rpm.json b/packaging/centreon-plugin-Applications-Databases-Postgresql/rpm.json new file mode 100644 index 000000000..9bda8eaff --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Postgresql/rpm.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "perl(DBI)", + "perl(Time::HiRes)", + "perl(POSIX)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Databases-Redis/deb.json b/packaging/centreon-plugin-Applications-Databases-Redis/deb.json new file mode 100644 index 000000000..87dd6443e --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Redis/deb.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "libredis-perl", + "plink", + "libssh-session-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Databases-Redis/pkg.json b/packaging/centreon-plugin-Applications-Databases-Redis/pkg.json new file mode 100644 index 000000000..b869d0784 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Redis/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Applications-Databases-Redis", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_database_redis.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/plugins/backend/ssh/", + "centreon/plugins/ssh.pm", + "database/redis/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Databases-Redis/rpm.json b/packaging/centreon-plugin-Applications-Databases-Redis/rpm.json new file mode 100644 index 000000000..6d4e38257 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Redis/rpm.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "perl(Redis)", + "plink", + "perl(Libssh::Session)" + ] +} diff --git a/packaging/centreon-plugin-Applications-Databases-Rrdtool/deb.json b/packaging/centreon-plugin-Applications-Databases-Rrdtool/deb.json new file mode 100644 index 000000000..76a18b51a --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Rrdtool/deb.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "plink", + "libssh-session-perl", + "librrds-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Databases-Rrdtool/pkg.json b/packaging/centreon-plugin-Applications-Databases-Rrdtool/pkg.json new file mode 100644 index 000000000..bf071a941 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Rrdtool/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Applications-Databases-Rrdtool", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_rrdtool.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/plugins/backend/ssh/", + "centreon/plugins/ssh.pm", + "database/rrdtool/local/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Databases-Rrdtool/rpm.json b/packaging/centreon-plugin-Applications-Databases-Rrdtool/rpm.json new file mode 100644 index 000000000..9df536a11 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Rrdtool/rpm.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "plink", + "perl(Libssh::Session)", + "perl(RRDs)" + ] +} diff --git a/packaging/centreon-plugin-Applications-Databases-Sap-Hana/deb.json b/packaging/centreon-plugin-Applications-Databases-Sap-Hana/deb.json new file mode 100644 index 000000000..a2ecef7ce --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Sap-Hana/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libdbi-perl", + "libdbd-odbc-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Databases-Sap-Hana/pkg.json b/packaging/centreon-plugin-Applications-Databases-Sap-Hana/pkg.json new file mode 100644 index 000000000..783819b84 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Sap-Hana/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Applications-Databases-Sap-Hana", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_sap_hana.pl", + "files": [ + "centreon/plugins/script_sql.pm", + "centreon/plugins/dbi.pm", + "centreon/common/protocols/sql/", + "database/sap/hana/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Databases-Sap-Hana/rpm.json b/packaging/centreon-plugin-Applications-Databases-Sap-Hana/rpm.json new file mode 100644 index 000000000..253d8cdb4 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Sap-Hana/rpm.json @@ -0,0 +1,8 @@ +{ + "dependencies": [ + "perl(DBI)", + "perl(DBD::ODBC)", + "perl(Time::HiRes)", + "perl(POSIX)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Databases-Sybase/deb.json b/packaging/centreon-plugin-Applications-Databases-Sybase/deb.json new file mode 100644 index 000000000..679a791a6 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Sybase/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libdbd-sybase-perl", + "libdbi-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Databases-Sybase/pkg.json b/packaging/centreon-plugin-Applications-Databases-Sybase/pkg.json new file mode 100644 index 000000000..574dd6217 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Sybase/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Applications-Databases-Sybase", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_sybase.pl", + "files": [ + "centreon/plugins/script_sql.pm", + "centreon/plugins/dbi.pm", + "centreon/common/protocols/sql", + "database/sybase/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Databases-Sybase/rpm.json b/packaging/centreon-plugin-Applications-Databases-Sybase/rpm.json new file mode 100644 index 000000000..72a9f728d --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Sybase/rpm.json @@ -0,0 +1,8 @@ +{ + "dependencies": [ + "perl(DBD::Sybase)", + "perl(DBI)", + "perl(Time::HiRes)", + "perl(POSIX)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Databases-Warp10-Sensision/deb.json b/packaging/centreon-plugin-Applications-Databases-Warp10-Sensision/deb.json new file mode 100644 index 000000000..21f204f89 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Warp10-Sensision/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "plink", + "libssh-session-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Databases-Warp10-Sensision/pkg.json b/packaging/centreon-plugin-Applications-Databases-Warp10-Sensision/pkg.json new file mode 100644 index 000000000..2d9f54cbd --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Warp10-Sensision/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Applications-Databases-Warp10-Sensision", + "pkg_summary": "Centreon Plugin to monitor Warp10 time series databases using Sensision", + "plugin_name": "centreon_warp10_sensision.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/plugins/script_custom/cli.pm", + "centreon/plugins/backend/ssh/", + "centreon/plugins/ssh.pm", + "centreon/common/monitoring/openmetrics/", + "database/warp10/sensision/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Databases-Warp10-Sensision/rpm.json b/packaging/centreon-plugin-Applications-Databases-Warp10-Sensision/rpm.json new file mode 100644 index 000000000..199351465 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Databases-Warp10-Sensision/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "plink", + "perl(Libssh::Session)" + ] +} diff --git a/packaging/centreon-plugin-Applications-Docker-Restapi/deb.json b/packaging/centreon-plugin-Applications-Docker-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Docker-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Docker-Restapi/pkg.json b/packaging/centreon-plugin-Applications-Docker-Restapi/pkg.json new file mode 100644 index 000000000..5d125ad67 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Docker-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Docker-Restapi", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_docker_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/docker/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Docker-Restapi/rpm.json b/packaging/centreon-plugin-Applications-Docker-Restapi/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Docker-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Drbd-Ssh/deb.json b/packaging/centreon-plugin-Applications-Drbd-Ssh/deb.json new file mode 100644 index 000000000..291988004 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Drbd-Ssh/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "plink", + "libssh-session-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Drbd-Ssh/pkg.json b/packaging/centreon-plugin-Applications-Drbd-Ssh/pkg.json new file mode 100644 index 000000000..0f5b225c2 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Drbd-Ssh/pkg.json @@ -0,0 +1,12 @@ +{ + "pkg_name": "centreon-plugin-Applications-Drbd-Ssh", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_drbd_ssh.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/plugins/script_custom/cli.pm", + "centreon/plugins/backend/ssh/", + "centreon/plugins/ssh.pm", + "apps/drbd/local/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Drbd-Ssh/rpm.json b/packaging/centreon-plugin-Applications-Drbd-Ssh/rpm.json new file mode 100644 index 000000000..48567831d --- /dev/null +++ b/packaging/centreon-plugin-Applications-Drbd-Ssh/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "plink", + "perl(Libssh::Session)" + ] +} diff --git a/packaging/centreon-plugin-Applications-Dynamics-Ax-Mssql/deb.json b/packaging/centreon-plugin-Applications-Dynamics-Ax-Mssql/deb.json new file mode 100644 index 000000000..ceb509d63 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Dynamics-Ax-Mssql/deb.json @@ -0,0 +1,9 @@ +{ + "dependencies": [ + "libtime-hires-perl", + "libdbi-perl", + "libdbd-sybase-perl", + "freetds-bin", + "unixodbc" + ] +} diff --git a/packaging/centreon-plugin-Applications-Dynamics-Ax-Mssql/pkg.json b/packaging/centreon-plugin-Applications-Dynamics-Ax-Mssql/pkg.json new file mode 100644 index 000000000..37e611864 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Dynamics-Ax-Mssql/pkg.json @@ -0,0 +1,12 @@ +{ + "pkg_name": "centreon-plugin-Applications-Dynamics-Ax-Mssql", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_dynamics_ax.pl", + "files": [ + "centreon/plugins/script_sql.pm", + "centreon/plugins/dbi.pm", + "centreon/common/protocols/sql", + "database/mssql/", + "apps/dynamics/ax/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Dynamics-Ax-Mssql/rpm.json b/packaging/centreon-plugin-Applications-Dynamics-Ax-Mssql/rpm.json new file mode 100644 index 000000000..5a0276c88 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Dynamics-Ax-Mssql/rpm.json @@ -0,0 +1,11 @@ +{ + "dependencies": [ + "perl(DBI)", + "perl(Digest::MD5)", + "perl(Time::HiRes)", + "perl(POSIX)", + "perl(DBD::Sybase)", + "freetds", + "unixODBC" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Emc-Ppma-Restapi/deb.json b/packaging/centreon-plugin-Applications-Emc-Ppma-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Emc-Ppma-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Emc-Ppma-Restapi/pkg.json b/packaging/centreon-plugin-Applications-Emc-Ppma-Restapi/pkg.json new file mode 100644 index 000000000..f63c04903 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Emc-Ppma-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Emc-Ppma-Restapi", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_emc_ppma_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/emc/ppma/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Emc-Ppma-Restapi/rpm.json b/packaging/centreon-plugin-Applications-Emc-Ppma-Restapi/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Emc-Ppma-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Ericsson-Enm-Api/deb.json b/packaging/centreon-plugin-Applications-Ericsson-Enm-Api/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Ericsson-Enm-Api/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Ericsson-Enm-Api/pkg.json b/packaging/centreon-plugin-Applications-Ericsson-Enm-Api/pkg.json new file mode 100644 index 000000000..2bf8cdab8 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Ericsson-Enm-Api/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Ericsson-Enm-Api", + "pkg_summary": "Centreon Plugin to monitor Ericsson ENM throught API", + "plugin_name": "centreon_ericsson_enm_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/ericsson/enm/api/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Ericsson-Enm-Api/rpm.json b/packaging/centreon-plugin-Applications-Ericsson-Enm-Api/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Ericsson-Enm-Api/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Github-Restapi/deb.json b/packaging/centreon-plugin-Applications-Github-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Github-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Github-Restapi/pkg.json b/packaging/centreon-plugin-Applications-Github-Restapi/pkg.json new file mode 100644 index 000000000..c25fb1936 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Github-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Github-Restapi", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_github_restapi.pl", + "files": [ + "centreon/plugins/script_simple.pm", + "apps/github/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Github-Restapi/rpm.json b/packaging/centreon-plugin-Applications-Github-Restapi/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Github-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Google-Workspace-Api/deb.json b/packaging/centreon-plugin-Applications-Google-Workspace-Api/deb.json new file mode 100644 index 000000000..9f1ae119b --- /dev/null +++ b/packaging/centreon-plugin-Applications-Google-Workspace-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Google-Workspace-Api/pkg.json b/packaging/centreon-plugin-Applications-Google-Workspace-Api/pkg.json new file mode 100644 index 000000000..69bc9a00d --- /dev/null +++ b/packaging/centreon-plugin-Applications-Google-Workspace-Api/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Google-Workspace-Api", + "pkg_summary": "Centreon Plugin to monitor the status of Google workspace services using Api", + "plugin_name": "centreon_google_workspace_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/google/workspace/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Google-Workspace-Api/rpm.json b/packaging/centreon-plugin-Applications-Google-Workspace-Api/rpm.json new file mode 100644 index 000000000..bc30a2c0d --- /dev/null +++ b/packaging/centreon-plugin-Applications-Google-Workspace-Api/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(DateTime)" + ] +} diff --git a/packaging/centreon-plugin-Applications-Gorgone-Restapi/deb.json b/packaging/centreon-plugin-Applications-Gorgone-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Gorgone-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Gorgone-Restapi/pkg.json b/packaging/centreon-plugin-Applications-Gorgone-Restapi/pkg.json new file mode 100644 index 000000000..7801ec953 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Gorgone-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Gorgone-Restapi", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_gorgone_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/gorgone/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Gorgone-Restapi/rpm.json b/packaging/centreon-plugin-Applications-Gorgone-Restapi/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Gorgone-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Grafana-Api/deb.json b/packaging/centreon-plugin-Applications-Grafana-Api/deb.json new file mode 100644 index 000000000..540c269f3 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Grafana-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libjson-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Grafana-Api/pkg.json b/packaging/centreon-plugin-Applications-Grafana-Api/pkg.json new file mode 100644 index 000000000..057d616da --- /dev/null +++ b/packaging/centreon-plugin-Applications-Grafana-Api/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Applications-Grafana-Api", + "pkg_summary": "Centreon Plugin to monitor Grafana using API", + "plugin_name": "centreon_grafana_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/grafana/api/" + ] +} + diff --git a/packaging/centreon-plugin-Applications-Grafana-Api/rpm.json b/packaging/centreon-plugin-Applications-Grafana-Api/rpm.json new file mode 100644 index 000000000..186961460 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Grafana-Api/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(JSON)" + ] +} diff --git a/packaging/centreon-plugin-Applications-Graylog-Restapi/deb.json b/packaging/centreon-plugin-Applications-Graylog-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Graylog-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Graylog-Restapi/pkg.json b/packaging/centreon-plugin-Applications-Graylog-Restapi/pkg.json new file mode 100644 index 000000000..e1d8ee4b2 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Graylog-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Graylog-Restapi", + "pkg_summary": "Centreon Plugin to monitor Graylogs throught Rest API", + "plugin_name": "centreon_graylog_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/graylog/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Graylog-Restapi/rpm.json b/packaging/centreon-plugin-Applications-Graylog-Restapi/rpm.json new file mode 100644 index 000000000..e9dff7552 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Graylog-Restapi/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(DateTime)" + ] +} diff --git a/packaging/centreon-plugin-Applications-Haproxy-Snmp/deb.json b/packaging/centreon-plugin-Applications-Haproxy-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Applications-Haproxy-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Haproxy-Snmp/pkg.json b/packaging/centreon-plugin-Applications-Haproxy-Snmp/pkg.json new file mode 100644 index 000000000..93e7aece1 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Haproxy-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Applications-Haproxy-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_haproxy_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "apps/haproxy/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Haproxy-Snmp/rpm.json b/packaging/centreon-plugin-Applications-Haproxy-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Applications-Haproxy-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-HashiCorp-Vault-Restapi/deb.json b/packaging/centreon-plugin-Applications-HashiCorp-Vault-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-HashiCorp-Vault-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-HashiCorp-Vault-Restapi/pkg.json b/packaging/centreon-plugin-Applications-HashiCorp-Vault-Restapi/pkg.json new file mode 100644 index 000000000..b376a81b1 --- /dev/null +++ b/packaging/centreon-plugin-Applications-HashiCorp-Vault-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-HashiCorp-Vault-Restapi", + "pkg_summary": "Centreon Plugin to check the status and health of a HashiCorp Vault environment", + "plugin_name": "centreon_hashicorp_vault_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/hashicorp/vault/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Applications-HashiCorp-Vault-Restapi/rpm.json b/packaging/centreon-plugin-Applications-HashiCorp-Vault-Restapi/rpm.json new file mode 100644 index 000000000..46445546b --- /dev/null +++ b/packaging/centreon-plugin-Applications-HashiCorp-Vault-Restapi/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Applications-Hddtemp/deb.json b/packaging/centreon-plugin-Applications-Hddtemp/deb.json new file mode 100644 index 000000000..e759736a8 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Hddtemp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Hddtemp/pkg.json b/packaging/centreon-plugin-Applications-Hddtemp/pkg.json new file mode 100644 index 000000000..0a7b96399 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Hddtemp/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Hddtemp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_hddtemp.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/hddtemp/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Hddtemp/rpm.json b/packaging/centreon-plugin-Applications-Hddtemp/rpm.json new file mode 100644 index 000000000..e759736a8 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Hddtemp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Hibernate-Jmx/deb.json b/packaging/centreon-plugin-Applications-Hibernate-Jmx/deb.json new file mode 100644 index 000000000..41a67333c --- /dev/null +++ b/packaging/centreon-plugin-Applications-Hibernate-Jmx/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libjmx4perl-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Hibernate-Jmx/pkg.json b/packaging/centreon-plugin-Applications-Hibernate-Jmx/pkg.json new file mode 100644 index 000000000..2c836a8f5 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Hibernate-Jmx/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Applications-Hibernate-Jmx", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_hibernate_jmx.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/common/protocols/jmx/", + "apps/java/hibernate/jmx/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Hibernate-Jmx/rpm.json b/packaging/centreon-plugin-Applications-Hibernate-Jmx/rpm.json new file mode 100644 index 000000000..5d2a81f7a --- /dev/null +++ b/packaging/centreon-plugin-Applications-Hibernate-Jmx/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(JMX::Jmx4Perl)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-IBM-Tsm/deb.json b/packaging/centreon-plugin-Applications-IBM-Tsm/deb.json new file mode 100644 index 000000000..66450a2aa --- /dev/null +++ b/packaging/centreon-plugin-Applications-IBM-Tsm/deb.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "plink", + "libssh-session-perl", + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-IBM-Tsm/pkg.json b/packaging/centreon-plugin-Applications-IBM-Tsm/pkg.json new file mode 100644 index 000000000..7a1a24b42 --- /dev/null +++ b/packaging/centreon-plugin-Applications-IBM-Tsm/pkg.json @@ -0,0 +1,12 @@ +{ + "pkg_name": "centreon-plugin-Applications-IBM-Tsm", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_ibm_tsm.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/plugins/script_custom/cli.pm", + "centreon/plugins/backend/ssh/", + "centreon/plugins/ssh.pm", + "apps/backup/tsm/local/" + ] +} diff --git a/packaging/centreon-plugin-Applications-IBM-Tsm/rpm.json b/packaging/centreon-plugin-Applications-IBM-Tsm/rpm.json new file mode 100644 index 000000000..6f9a38a23 --- /dev/null +++ b/packaging/centreon-plugin-Applications-IBM-Tsm/rpm.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "plink", + "perl(Libssh::Session)", + "perl(DateTime)" + ] +} diff --git a/packaging/centreon-plugin-Applications-Ibm-Tsamp-Ssh/deb.json b/packaging/centreon-plugin-Applications-Ibm-Tsamp-Ssh/deb.json new file mode 100644 index 000000000..21f204f89 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Ibm-Tsamp-Ssh/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "plink", + "libssh-session-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Ibm-Tsamp-Ssh/pkg.json b/packaging/centreon-plugin-Applications-Ibm-Tsamp-Ssh/pkg.json new file mode 100644 index 000000000..d74ad173d --- /dev/null +++ b/packaging/centreon-plugin-Applications-Ibm-Tsamp-Ssh/pkg.json @@ -0,0 +1,12 @@ +{ + "pkg_name": "centreon-plugin-Applications-Ibm-Tsamp-Ssh", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_ibm_tsamp_ssh.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/plugins/script_custom/cli.pm", + "centreon/plugins/backend/ssh/", + "centreon/plugins/ssh.pm", + "apps/ibm/tsamp/local/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Ibm-Tsamp-Ssh/rpm.json b/packaging/centreon-plugin-Applications-Ibm-Tsamp-Ssh/rpm.json new file mode 100644 index 000000000..60fcdb79d --- /dev/null +++ b/packaging/centreon-plugin-Applications-Ibm-Tsamp-Ssh/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "plink", + "perl(Libssh::Session)" + ] +} diff --git a/packaging/centreon-plugin-Applications-Ibmmq-Mqi/deb.json b/packaging/centreon-plugin-Applications-Ibmmq-Mqi/deb.json new file mode 100644 index 000000000..0f57e56c0 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Ibmmq-Mqi/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl-mqseries" + ] +} diff --git a/packaging/centreon-plugin-Applications-Ibmmq-Mqi/pkg.json b/packaging/centreon-plugin-Applications-Ibmmq-Mqi/pkg.json new file mode 100644 index 000000000..042a35e76 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Ibmmq-Mqi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Ibmmq-Mqi", + "pkg_summary": "Centreon Plugin to monitor IBM MQ using MQI", + "plugin_name": "centreon_ibmmq_mqi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/mq/ibmmq/mqi/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Ibmmq-Mqi/rpm.json b/packaging/centreon-plugin-Applications-Ibmmq-Mqi/rpm.json new file mode 100644 index 000000000..0a2876378 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Ibmmq-Mqi/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(MQSeries)" + ] +} diff --git a/packaging/centreon-plugin-Applications-Ibmmq-Restapi/deb.json b/packaging/centreon-plugin-Applications-Ibmmq-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Ibmmq-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Ibmmq-Restapi/pkg.json b/packaging/centreon-plugin-Applications-Ibmmq-Restapi/pkg.json new file mode 100644 index 000000000..9c9a19d92 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Ibmmq-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Ibmmq-Restapi", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_ibmmq_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/mq/ibmmq/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Ibmmq-Restapi/rpm.json b/packaging/centreon-plugin-Applications-Ibmmq-Restapi/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Ibmmq-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Iis-Wsman/deb.json b/packaging/centreon-plugin-Applications-Iis-Wsman/deb.json new file mode 100644 index 000000000..35240f89b --- /dev/null +++ b/packaging/centreon-plugin-Applications-Iis-Wsman/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libopenwsman-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Iis-Wsman/pkg.json b/packaging/centreon-plugin-Applications-Iis-Wsman/pkg.json new file mode 100644 index 000000000..72f5e534a --- /dev/null +++ b/packaging/centreon-plugin-Applications-Iis-Wsman/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Applications-Iis-Wsman", + "pkg_summary": "Centreon Plugin to monitor IIS using WSMAN", + "plugin_name": "centreon_iis_wsman.pl", + "files": [ + "centreon/plugins/script_wsman.pm", + "centreon/plugins/wsman.pm", + "apps/microsoft/iis/wsman/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Iis-Wsman/rpm.json b/packaging/centreon-plugin-Applications-Iis-Wsman/rpm.json new file mode 100644 index 000000000..d754f4d6e --- /dev/null +++ b/packaging/centreon-plugin-Applications-Iis-Wsman/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(openwsman)" + ] +} diff --git a/packaging/centreon-plugin-Applications-Ipfabric-Api/deb.json b/packaging/centreon-plugin-Applications-Ipfabric-Api/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Ipfabric-Api/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Ipfabric-Api/pkg.json b/packaging/centreon-plugin-Applications-Ipfabric-Api/pkg.json new file mode 100644 index 000000000..77afdb2dc --- /dev/null +++ b/packaging/centreon-plugin-Applications-Ipfabric-Api/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Ipfabric-Api", + "pkg_summary": "Centreon Plugin to monitor network devices through IP Fabric API", + "plugin_name": "centreon_ipfabric_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/ipfabric/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Ipfabric-Api/rpm.json b/packaging/centreon-plugin-Applications-Ipfabric-Api/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Ipfabric-Api/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Jboss-Jmx/deb.json b/packaging/centreon-plugin-Applications-Jboss-Jmx/deb.json new file mode 100644 index 000000000..41a67333c --- /dev/null +++ b/packaging/centreon-plugin-Applications-Jboss-Jmx/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libjmx4perl-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Jboss-Jmx/pkg.json b/packaging/centreon-plugin-Applications-Jboss-Jmx/pkg.json new file mode 100644 index 000000000..efd1c1311 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Jboss-Jmx/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Applications-Jboss-Jmx", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_jboss_jmx.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/common/protocols/jmx/", + "centreon/common/jvm", + "apps/java/jboss/jmx/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Jboss-Jmx/rpm.json b/packaging/centreon-plugin-Applications-Jboss-Jmx/rpm.json new file mode 100644 index 000000000..5d2a81f7a --- /dev/null +++ b/packaging/centreon-plugin-Applications-Jboss-Jmx/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(JMX::Jmx4Perl)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Jenkins/deb.json b/packaging/centreon-plugin-Applications-Jenkins/deb.json new file mode 100644 index 000000000..540c269f3 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Jenkins/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libjson-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Jenkins/pkg.json b/packaging/centreon-plugin-Applications-Jenkins/pkg.json new file mode 100644 index 000000000..cc29e8392 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Jenkins/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Jenkins", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_jenkins.pl", + "files": [ + "centreon/plugins/script_simple.pm", + "apps/jenkins/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Jenkins/rpm.json b/packaging/centreon-plugin-Applications-Jenkins/rpm.json new file mode 100644 index 000000000..186961460 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Jenkins/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(JSON)" + ] +} diff --git a/packaging/centreon-plugin-Applications-Jvm-Actuator/deb.json b/packaging/centreon-plugin-Applications-Jvm-Actuator/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Jvm-Actuator/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Jvm-Actuator/pkg.json b/packaging/centreon-plugin-Applications-Jvm-Actuator/pkg.json new file mode 100644 index 000000000..6202db424 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Jvm-Actuator/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Applications-Jvm-Actuator", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_jvm_actuator.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/common/protocols/actuator/custom/", + "apps/java/jvm/actuator/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Jvm-Actuator/rpm.json b/packaging/centreon-plugin-Applications-Jvm-Actuator/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Jvm-Actuator/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Jvm-Jmx/deb.json b/packaging/centreon-plugin-Applications-Jvm-Jmx/deb.json new file mode 100644 index 000000000..41a67333c --- /dev/null +++ b/packaging/centreon-plugin-Applications-Jvm-Jmx/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libjmx4perl-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Jvm-Jmx/pkg.json b/packaging/centreon-plugin-Applications-Jvm-Jmx/pkg.json new file mode 100644 index 000000000..0ffccc5e9 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Jvm-Jmx/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Applications-Jvm-Jmx", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_jvm_jmx.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/common/protocols/jmx/", + "centreon/common/jvm/", + "apps/java/jvm/jmx/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Jvm-Jmx/rpm.json b/packaging/centreon-plugin-Applications-Jvm-Jmx/rpm.json new file mode 100644 index 000000000..5d2a81f7a --- /dev/null +++ b/packaging/centreon-plugin-Applications-Jvm-Jmx/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(JMX::Jmx4Perl)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Kafka-Jmx/deb.json b/packaging/centreon-plugin-Applications-Kafka-Jmx/deb.json new file mode 100644 index 000000000..41a67333c --- /dev/null +++ b/packaging/centreon-plugin-Applications-Kafka-Jmx/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libjmx4perl-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Kafka-Jmx/pkg.json b/packaging/centreon-plugin-Applications-Kafka-Jmx/pkg.json new file mode 100644 index 000000000..85b9eb1a6 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Kafka-Jmx/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Applications-Kafka-Jmx", + "pkg_summary": "Centreon Plugin to monitor Kafka Application using JMX protocol", + "plugin_name": "centreon_kafka_jmx.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/common/protocols/jmx/", + "apps/java/kafka/jmx/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Kafka-Jmx/rpm.json b/packaging/centreon-plugin-Applications-Kafka-Jmx/rpm.json new file mode 100644 index 000000000..5d2a81f7a --- /dev/null +++ b/packaging/centreon-plugin-Applications-Kafka-Jmx/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(JMX::Jmx4Perl)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Keepalived-Snmp/deb.json b/packaging/centreon-plugin-Applications-Keepalived-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Applications-Keepalived-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Keepalived-Snmp/pkg.json b/packaging/centreon-plugin-Applications-Keepalived-Snmp/pkg.json new file mode 100644 index 000000000..9e4f91fb2 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Keepalived-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Applications-Keepalived-Snmp", + "pkg_summary": "Centreon Plugin to monitor Keepalived Application using SNMP", + "plugin_name": "centreon_keepalived_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "apps/keepalived/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Keepalived-Snmp/rpm.json b/packaging/centreon-plugin-Applications-Keepalived-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Applications-Keepalived-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Lmsensors-Snmp/deb.json b/packaging/centreon-plugin-Applications-Lmsensors-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Applications-Lmsensors-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Lmsensors-Snmp/pkg.json b/packaging/centreon-plugin-Applications-Lmsensors-Snmp/pkg.json new file mode 100644 index 000000000..74daf8383 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Lmsensors-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Applications-Lmsensors-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_lmsensors_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "apps/lmsensors/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Lmsensors-Snmp/rpm.json b/packaging/centreon-plugin-Applications-Lmsensors-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Applications-Lmsensors-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Lync-2013-Mssql/deb.json b/packaging/centreon-plugin-Applications-Lync-2013-Mssql/deb.json new file mode 100644 index 000000000..34cd170e4 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Lync-2013-Mssql/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdbi-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Lync-2013-Mssql/pkg.json b/packaging/centreon-plugin-Applications-Lync-2013-Mssql/pkg.json new file mode 100644 index 000000000..ecda9275a --- /dev/null +++ b/packaging/centreon-plugin-Applications-Lync-2013-Mssql/pkg.json @@ -0,0 +1,14 @@ +{ + "pkg_name": "centreon-plugin-Applications-Lync-2013-Mssql", + "pkg_summary": "Centreon Plugin to monitor Lync 2013 using the SQL database", + "plugin_name": "centreon_lync_2k13.pl", + "files": [ + "centreon/plugins/script_simple.pm", + "centreon/plugins/script_sql.pm", + "centreon/plugins/dbi.pm", + "centreon/common/protocols/sql/", + "centreon/common/microsoft/skype/mssql/", + "database/mssql/", + "apps/lync/2013/mssql/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Lync-2013-Mssql/rpm.json b/packaging/centreon-plugin-Applications-Lync-2013-Mssql/rpm.json new file mode 100644 index 000000000..12fa8b254 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Lync-2013-Mssql/rpm.json @@ -0,0 +1,9 @@ +{ + "dependencies": [ + "perl(DBI)", + "perl(Digest::MD5)", + "perl(Data::Dumper)", + "perl(Time::HiRes)", + "perl(POSIX)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Microsoft-Dhcp-Snmp/deb.json b/packaging/centreon-plugin-Applications-Microsoft-Dhcp-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Applications-Microsoft-Dhcp-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Microsoft-Dhcp-Snmp/pkg.json b/packaging/centreon-plugin-Applications-Microsoft-Dhcp-Snmp/pkg.json new file mode 100644 index 000000000..31e504655 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Microsoft-Dhcp-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Applications-Microsoft-Dhcp-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_microsoft_dhcp_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "apps/microsoft/dhcp/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Microsoft-Dhcp-Snmp/rpm.json b/packaging/centreon-plugin-Applications-Microsoft-Dhcp-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Applications-Microsoft-Dhcp-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Monitoring-Alyvix-Restapi/deb.json b/packaging/centreon-plugin-Applications-Monitoring-Alyvix-Restapi/deb.json new file mode 100644 index 000000000..d1383e463 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Alyvix-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Alyvix-Restapi/pkg.json b/packaging/centreon-plugin-Applications-Monitoring-Alyvix-Restapi/pkg.json new file mode 100644 index 000000000..7a8a64d1c --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Alyvix-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Monitoring-Alyvix-Restapi", + "pkg_summary": "Centreon Plugin Alyvix Server RestAPI", + "plugin_name": "centreon_monitoring_alyvix_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/monitoring/alyvix/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Alyvix-Restapi/rpm.json b/packaging/centreon-plugin-Applications-Monitoring-Alyvix-Restapi/rpm.json new file mode 100644 index 000000000..d1383e463 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Alyvix-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Centreon-Central/deb.json b/packaging/centreon-plugin-Applications-Monitoring-Centreon-Central/deb.json new file mode 100644 index 000000000..39e728ec8 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Centreon-Central/deb.json @@ -0,0 +1,10 @@ +{ + "dependencies": [ + "plink", + "libssh-session-perl", + "libjson-perl", + "libxml-libxml-perl", + "libdbi-perl", + "libdbd-mysql-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Centreon-Central/pkg.json b/packaging/centreon-plugin-Applications-Monitoring-Centreon-Central/pkg.json new file mode 100644 index 000000000..e75912033 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Centreon-Central/pkg.json @@ -0,0 +1,12 @@ +{ + "pkg_name": "centreon-plugin-Applications-Monitoring-Centreon-Central", + "pkg_summary": "Centreon Plugin to monitor Centreon Central server", + "plugin_name": "centreon_centreon_central.pl", + "files": [ + "centreon/plugins/script_simple.pm", + "centreon/plugins/backend/ssh/", + "centreon/plugins/ssh.pm", + "centreon/plugins/dbi.pm", + "apps/centreon/local/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Centreon-Central/rpm.json b/packaging/centreon-plugin-Applications-Monitoring-Centreon-Central/rpm.json new file mode 100644 index 000000000..29a41817c --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Centreon-Central/rpm.json @@ -0,0 +1,10 @@ +{ + "dependencies": [ + "plink", + "perl(Libssh::Session)", + "perl(XML::LibXML)", + "perl(DBI)", + "perl(DBD::mysql)" + ], + "custom_pkg_data": "Obsoletes: centreon-plugin-meta" +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Centreon-Database/deb.json b/packaging/centreon-plugin-Applications-Monitoring-Centreon-Database/deb.json new file mode 100644 index 000000000..1aa5314d7 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Centreon-Database/deb.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "libdbi-perl", + "libdbd-mysql-perl", + "libdata-dump-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Centreon-Database/pkg.json b/packaging/centreon-plugin-Applications-Monitoring-Centreon-Database/pkg.json new file mode 100644 index 000000000..daf6516e8 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Centreon-Database/pkg.json @@ -0,0 +1,16 @@ +{ + "pkg_name": "centreon-plugin-Applications-Monitoring-Centreon-Database", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_centreon_database.pl", + "files": [ + "centreon/plugins/script_simple.pm", + "centreon/plugins/statefile.pm", + "centreon/plugins/script_sql.pm", + "centreon/plugins/dbi.pm", + "centreon/plugins/values.pm", + "centreon/common/protocols/sql/mode/connectiontime.pm", + "centreon/common/protocols/sql/mode/sql.pm", + "database/mysql/", + "apps/centreon/sql/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Monitoring-Centreon-Database/rpm.json b/packaging/centreon-plugin-Applications-Monitoring-Centreon-Database/rpm.json new file mode 100644 index 000000000..7f0686e37 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Centreon-Database/rpm.json @@ -0,0 +1,10 @@ +{ + "dependencies": [ + "perl(DBI)", + "perl(DBD::mysql)", + "perl(Digest::MD5)", + "perl(Data::Dumper)", + "perl(Time::HiRes)", + "perl(POSIX)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Monitoring-Centreon-Map-Jmx/deb.json b/packaging/centreon-plugin-Applications-Monitoring-Centreon-Map-Jmx/deb.json new file mode 100644 index 000000000..41a67333c --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Centreon-Map-Jmx/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libjmx4perl-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Centreon-Map-Jmx/pkg.json b/packaging/centreon-plugin-Applications-Monitoring-Centreon-Map-Jmx/pkg.json new file mode 100644 index 000000000..6b2a6e01c --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Centreon-Map-Jmx/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Applications-Monitoring-Centreon-Map-Jmx", + "pkg_summary": "Centreon Plugin to monitor Centreon Map using Jolokia", + "plugin_name": "centreon_centreon_map_jmx.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/common/protocols/jmx/", + "apps/centreon/map/jmx/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Centreon-Map-Jmx/rpm.json b/packaging/centreon-plugin-Applications-Monitoring-Centreon-Map-Jmx/rpm.json new file mode 100644 index 000000000..c65a9bd69 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Centreon-Map-Jmx/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(Digest::MD5)", + "perl(JMX::Jmx4Perl)" + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Centreon-Map4-Jmx/deb.json b/packaging/centreon-plugin-Applications-Monitoring-Centreon-Map4-Jmx/deb.json new file mode 100644 index 000000000..41a67333c --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Centreon-Map4-Jmx/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libjmx4perl-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Centreon-Map4-Jmx/pkg.json b/packaging/centreon-plugin-Applications-Monitoring-Centreon-Map4-Jmx/pkg.json new file mode 100644 index 000000000..bcd33dd96 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Centreon-Map4-Jmx/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Applications-Monitoring-Centreon-Map4-Jmx", + "pkg_summary": "Centreon Plugin to monitor Centreon Map 4 using Jolokia", + "plugin_name": "centreon_centreon_map.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/common/protocols/jmx/", + "apps/centreon/map4/jmx/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Centreon-Map4-Jmx/rpm.json b/packaging/centreon-plugin-Applications-Monitoring-Centreon-Map4-Jmx/rpm.json new file mode 100644 index 000000000..5d2a81f7a --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Centreon-Map4-Jmx/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(JMX::Jmx4Perl)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Monitoring-Centreon-Poller/deb.json b/packaging/centreon-plugin-Applications-Monitoring-Centreon-Poller/deb.json new file mode 100644 index 000000000..27c022c85 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Centreon-Poller/deb.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "plink", + "libssh-session-perl", + "libxml-libxml-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Centreon-Poller/pkg.json b/packaging/centreon-plugin-Applications-Monitoring-Centreon-Poller/pkg.json new file mode 100644 index 000000000..d32b93e01 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Centreon-Poller/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Applications-Monitoring-Centreon-Poller", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_centreon_poller.pl", + "files": [ + "centreon/plugins/script_simple.pm", + "centreon/plugins/backend/ssh/", + "centreon/plugins/ssh.pm", + "apps/centreon/local/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Centreon-Poller/rpm.json b/packaging/centreon-plugin-Applications-Monitoring-Centreon-Poller/rpm.json new file mode 100644 index 000000000..0f83459fe --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Centreon-Poller/rpm.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "plink", + "perl(Libssh::Session)", + "perl(XML::LibXML)" + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Centreon-SQL-Metrics/deb.json b/packaging/centreon-plugin-Applications-Monitoring-Centreon-SQL-Metrics/deb.json new file mode 100644 index 000000000..7ece94ba6 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Centreon-SQL-Metrics/deb.json @@ -0,0 +1,8 @@ +{ + "dependencies": [ + "libdbi-perl", + "libdbd-mysql-perl", + "libdata-dump-perl", + "libjson-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Centreon-SQL-Metrics/pkg.json b/packaging/centreon-plugin-Applications-Monitoring-Centreon-SQL-Metrics/pkg.json new file mode 100644 index 000000000..71c76b701 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Centreon-SQL-Metrics/pkg.json @@ -0,0 +1,17 @@ +{ + "pkg_name": "centreon-plugin-Applications-Monitoring-Centreon-SQL-Metrics", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_centreon_sql_metrics.pl", + "files": [ + "centreon/plugins/script_simple.pm", + "centreon/plugins/statefile.pm", + "centreon/plugins/script_sql.pm", + "centreon/plugins/dbi.pm", + "centreon/plugins/values.pm", + "centreon/common/protocols/sql/mode/sql.pm", + "database/mysql/plugin.pm", + "database/mysql/dbi.pm", + "database/mysql/mysqlcmd.pm", + "apps/centreon/sql/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Centreon-SQL-Metrics/rpm.json b/packaging/centreon-plugin-Applications-Monitoring-Centreon-SQL-Metrics/rpm.json new file mode 100644 index 000000000..16ee549d4 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Centreon-SQL-Metrics/rpm.json @@ -0,0 +1,11 @@ +{ + "dependencies": [ + "perl(DBI)", + "perl(DBD::mysql)", + "perl(Digest::MD5)", + "perl(Data::Dumper)", + "perl(Time::HiRes)", + "perl(POSIX)", + "perl(JSON)" + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Dynatrace-Restapi/deb.json b/packaging/centreon-plugin-Applications-Monitoring-Dynatrace-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Dynatrace-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Dynatrace-Restapi/pkg.json b/packaging/centreon-plugin-Applications-Monitoring-Dynatrace-Restapi/pkg.json new file mode 100644 index 000000000..8eab9ad73 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Dynatrace-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Monitoring-Dynatrace-Restapi", + "pkg_summary": "Centreon Plugin Dynatrace Rest API", + "plugin_name": "centreon_monitoring_dynatrace_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/monitoring/dynatrace/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Dynatrace-Restapi/rpm.json b/packaging/centreon-plugin-Applications-Monitoring-Dynatrace-Restapi/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Dynatrace-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Iplabel-Datametrie-Restapi/deb.json b/packaging/centreon-plugin-Applications-Monitoring-Iplabel-Datametrie-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Iplabel-Datametrie-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Iplabel-Datametrie-Restapi/pkg.json b/packaging/centreon-plugin-Applications-Monitoring-Iplabel-Datametrie-Restapi/pkg.json new file mode 100644 index 000000000..443734a23 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Iplabel-Datametrie-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Monitoring-Iplabel-Datametrie-Restapi", + "pkg_summary": "Centreon Plugin IP-Label datametrie rest api", + "plugin_name": "centreon_monitoring_iplabel_datametrie_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/monitoring/iplabel/datametrie/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Iplabel-Datametrie-Restapi/rpm.json b/packaging/centreon-plugin-Applications-Monitoring-Iplabel-Datametrie-Restapi/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Iplabel-Datametrie-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Iplabel-Ekara-Restapi/deb.json b/packaging/centreon-plugin-Applications-Monitoring-Iplabel-Ekara-Restapi/deb.json new file mode 100644 index 000000000..0dd397141 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Iplabel-Ekara-Restapi/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libdatetime-perl", + "libdatetime-format-dateparse-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Iplabel-Ekara-Restapi/pkg.json b/packaging/centreon-plugin-Applications-Monitoring-Iplabel-Ekara-Restapi/pkg.json new file mode 100644 index 000000000..2e538140d --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Iplabel-Ekara-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Monitoring-Iplabel-Ekara-Restapi", + "pkg_summary": "Centreon Plugin to monitor IP-Label Ekara using Rest Api", + "plugin_name": "centreon_monitoring_iplabel_ekara_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/monitoring/iplabel/ekara/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Iplabel-Ekara-Restapi/rpm.json b/packaging/centreon-plugin-Applications-Monitoring-Iplabel-Ekara-Restapi/rpm.json new file mode 100644 index 000000000..0422faade --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Iplabel-Ekara-Restapi/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(Date::Parse)" + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Iplabel-Newtest-Restapi/deb.json b/packaging/centreon-plugin-Applications-Monitoring-Iplabel-Newtest-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Iplabel-Newtest-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Iplabel-Newtest-Restapi/pkg.json b/packaging/centreon-plugin-Applications-Monitoring-Iplabel-Newtest-Restapi/pkg.json new file mode 100644 index 000000000..d049dac83 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Iplabel-Newtest-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Monitoring-Iplabel-Newtest-Restapi", + "pkg_summary": "Centreon plugin IP-Label Newtest Rest API", + "plugin_name": "centreon_monitoring_iplabel_newtest_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/monitoring/iplabel/newtest/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Iplabel-Newtest-Restapi/rpm.json b/packaging/centreon-plugin-Applications-Monitoring-Iplabel-Newtest-Restapi/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Iplabel-Newtest-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Kadiska-Restapi/deb.json b/packaging/centreon-plugin-Applications-Monitoring-Kadiska-Restapi/deb.json new file mode 100644 index 000000000..264220ca8 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Kadiska-Restapi/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libdatetime-perl", + "libtime-parsedate-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Kadiska-Restapi/pkg.json b/packaging/centreon-plugin-Applications-Monitoring-Kadiska-Restapi/pkg.json new file mode 100644 index 000000000..c018943e1 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Kadiska-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Monitoring-Kadiska-Restapi", + "pkg_summary": "Centreon plugin Kadiska Rest API", + "plugin_name": "centreon_monitoring_kadiska_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/monitoring/kadiska/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Kadiska-Restapi/rpm.json b/packaging/centreon-plugin-Applications-Monitoring-Kadiska-Restapi/rpm.json new file mode 100644 index 000000000..7adc95738 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Kadiska-Restapi/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Date::Parse)" + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Loggly-Restapi/deb.json b/packaging/centreon-plugin-Applications-Monitoring-Loggly-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Loggly-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Loggly-Restapi/pkg.json b/packaging/centreon-plugin-Applications-Monitoring-Loggly-Restapi/pkg.json new file mode 100644 index 000000000..60d468fb3 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Loggly-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Monitoring-Loggly-Restapi", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_loggly_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/monitoring/loggly/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Loggly-Restapi/rpm.json b/packaging/centreon-plugin-Applications-Monitoring-Loggly-Restapi/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Loggly-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Mip-Restapi/deb.json b/packaging/centreon-plugin-Applications-Monitoring-Mip-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Mip-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Mip-Restapi/pkg.json b/packaging/centreon-plugin-Applications-Monitoring-Mip-Restapi/pkg.json new file mode 100644 index 000000000..54fa26868 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Mip-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Monitoring-Mip-Restapi", + "pkg_summary": "Centreon Plugin Maltem Insight Performance rest api", + "plugin_name": "centreon_monitoring_mip_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/monitoring/mip/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Mip-Restapi/rpm.json b/packaging/centreon-plugin-Applications-Monitoring-Mip-Restapi/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Mip-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Netdata-Restapi/deb.json b/packaging/centreon-plugin-Applications-Monitoring-Netdata-Restapi/deb.json new file mode 100644 index 000000000..d1383e463 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Netdata-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Netdata-Restapi/pkg.json b/packaging/centreon-plugin-Applications-Monitoring-Netdata-Restapi/pkg.json new file mode 100644 index 000000000..3a16ecf07 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Netdata-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Monitoring-Netdata-Restapi", + "pkg_summary": "Centreon Plugin to monitor servers using the Netdata agent Rest API", + "plugin_name": "centreon_monitoring_netdata_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/monitoring/netdata/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Netdata-Restapi/rpm.json b/packaging/centreon-plugin-Applications-Monitoring-Netdata-Restapi/rpm.json new file mode 100644 index 000000000..5208a1a17 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Netdata-Restapi/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Nodeexporter-Linux/deb.json b/packaging/centreon-plugin-Applications-Monitoring-Nodeexporter-Linux/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Nodeexporter-Linux/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Nodeexporter-Linux/pkg.json b/packaging/centreon-plugin-Applications-Monitoring-Nodeexporter-Linux/pkg.json new file mode 100644 index 000000000..c3d0f92c7 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Nodeexporter-Linux/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Applications-Monitoring-Nodeexporter-Linux", + "pkg_summary": "Centreon Plugin to monitor host through Linux node exporter", + "plugin_name": "centreon_monitoring_nodeexporter_linux.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/common/monitoring/openmetrics/scrape.pm", + "centreon/common/monitoring/openmetrics/custom/web.pm", + "apps/monitoring/nodeexporter/linux/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Nodeexporter-Linux/rpm.json b/packaging/centreon-plugin-Applications-Monitoring-Nodeexporter-Linux/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Nodeexporter-Linux/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Nodeexporter-Windows/deb.json b/packaging/centreon-plugin-Applications-Monitoring-Nodeexporter-Windows/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Nodeexporter-Windows/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Nodeexporter-Windows/pkg.json b/packaging/centreon-plugin-Applications-Monitoring-Nodeexporter-Windows/pkg.json new file mode 100644 index 000000000..87db43675 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Nodeexporter-Windows/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Applications-Monitoring-Nodeexporter-Windows", + "pkg_summary": "Centreon Plugin to monitor host through Windows node exporter", + "plugin_name": "centreon_monitoring_nodeexporter_windows.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/common/monitoring/openmetrics/scrape.pm", + "centreon/common/monitoring/openmetrics/custom/web.pm", + "apps/monitoring/nodeexporter/windows/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Nodeexporter-Windows/rpm.json b/packaging/centreon-plugin-Applications-Monitoring-Nodeexporter-Windows/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Nodeexporter-Windows/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Ntopng-Restapi/deb.json b/packaging/centreon-plugin-Applications-Monitoring-Ntopng-Restapi/deb.json new file mode 100644 index 000000000..d1383e463 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Ntopng-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Ntopng-Restapi/pkg.json b/packaging/centreon-plugin-Applications-Monitoring-Ntopng-Restapi/pkg.json new file mode 100644 index 000000000..58e1b50a5 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Ntopng-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Monitoring-Ntopng-Restapi", + "pkg_summary": "Centreon Plugin to monitor NtopNG", + "plugin_name": "centreon_monitoring_ntopng_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/monitoring/ntopng/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Ntopng-Restapi/rpm.json b/packaging/centreon-plugin-Applications-Monitoring-Ntopng-Restapi/rpm.json new file mode 100644 index 000000000..d1383e463 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Ntopng-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Openmetrics/deb.json b/packaging/centreon-plugin-Applications-Monitoring-Openmetrics/deb.json new file mode 100644 index 000000000..21f204f89 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Openmetrics/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "plink", + "libssh-session-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Openmetrics/pkg.json b/packaging/centreon-plugin-Applications-Monitoring-Openmetrics/pkg.json new file mode 100644 index 000000000..6b3153980 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Openmetrics/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Applications-Monitoring-Openmetrics", + "pkg_summary": "Centreon Plugin to monitor applications or equipments exposing OpenMetrics endpoints", + "plugin_name": "centreon_monitoring_openmetrics.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/plugins/script_custom/cli.pm", + "centreon/plugins/backend/ssh/", + "centreon/plugins/ssh.pm", + "centreon/common/monitoring/openmetrics/", + "apps/monitoring/openmetrics/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Openmetrics/rpm.json b/packaging/centreon-plugin-Applications-Monitoring-Openmetrics/rpm.json new file mode 100644 index 000000000..60fcdb79d --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Openmetrics/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "plink", + "perl(Libssh::Session)" + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Scom-Restapi/deb.json b/packaging/centreon-plugin-Applications-Monitoring-Scom-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Scom-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Scom-Restapi/pkg.json b/packaging/centreon-plugin-Applications-Monitoring-Scom-Restapi/pkg.json new file mode 100644 index 000000000..ced534b5e --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Scom-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Monitoring-Scom-Restapi", + "pkg_summary": "Centreon Plugin SCOM rest api", + "plugin_name": "centreon_monitoring_scom_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/monitoring/scom/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Scom-Restapi/rpm.json b/packaging/centreon-plugin-Applications-Monitoring-Scom-Restapi/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Scom-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Speedtest/deb.json b/packaging/centreon-plugin-Applications-Monitoring-Speedtest/deb.json new file mode 100644 index 000000000..49d3c797d --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Speedtest/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libssh-session-perl", + "speedtest-cli" + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Speedtest/pkg.json b/packaging/centreon-plugin-Applications-Monitoring-Speedtest/pkg.json new file mode 100644 index 000000000..09e6e4695 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Speedtest/pkg.json @@ -0,0 +1,12 @@ +{ + "pkg_name": "centreon-plugin-Applications-Monitoring-Speedtest", + "pkg_summary": "Centreon Plugin to monitor internet bandwidth using speedtest.net", + "plugin_name": "centreon_monitoring_speedtest.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/plugins/script_custom/cli.pm", + "centreon/plugins/backend/ssh/", + "centreon/plugins/ssh.pm", + "apps/monitoring/speedtest/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Speedtest/rpm.json b/packaging/centreon-plugin-Applications-Monitoring-Speedtest/rpm.json new file mode 100644 index 000000000..3bd929c3b --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Speedtest/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(Libssh::Session)", + "speedtest-cli" + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Splunk-Api/deb.json b/packaging/centreon-plugin-Applications-Monitoring-Splunk-Api/deb.json new file mode 100644 index 000000000..4e078a4e6 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Splunk-Api/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libdatetime-perl", + "libxml-simple-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Splunk-Api/pkg.json b/packaging/centreon-plugin-Applications-Monitoring-Splunk-Api/pkg.json new file mode 100644 index 000000000..3e0826d92 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Splunk-Api/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Monitoring-Splunk-Api", + "pkg_summary": "Centreon Plugin Splunk API", + "plugin_name": "centreon_monitoring_splunk_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/monitoring/splunk/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Monitoring-Splunk-Api/rpm.json b/packaging/centreon-plugin-Applications-Monitoring-Splunk-Api/rpm.json new file mode 100644 index 000000000..250d5975d --- /dev/null +++ b/packaging/centreon-plugin-Applications-Monitoring-Splunk-Api/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(XML::Simple)" + ] +} diff --git a/packaging/centreon-plugin-Applications-Mulesoft-Restapi/deb.json b/packaging/centreon-plugin-Applications-Mulesoft-Restapi/deb.json new file mode 100644 index 000000000..d1383e463 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Mulesoft-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Mulesoft-Restapi/pkg.json b/packaging/centreon-plugin-Applications-Mulesoft-Restapi/pkg.json new file mode 100644 index 000000000..ed53cc281 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Mulesoft-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Mulesoft-Restapi", + "pkg_summary": "Centreon Plugin to monitor Mulesoft Anypoint resources using Restapi", + "plugin_name": "centreon_mulesoft_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/mulesoft/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Mulesoft-Restapi/rpm.json b/packaging/centreon-plugin-Applications-Mulesoft-Restapi/rpm.json new file mode 100644 index 000000000..5208a1a17 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Mulesoft-Restapi/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Applications-Netbackup-SSH/deb.json b/packaging/centreon-plugin-Applications-Netbackup-SSH/deb.json new file mode 100644 index 000000000..01996ae36 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Netbackup-SSH/deb.json @@ -0,0 +1,8 @@ +{ + "dependencies": [ + "perl", + "plink", + "libssh-session-perl", + "libxml-simple-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Netbackup-SSH/pkg.json b/packaging/centreon-plugin-Applications-Netbackup-SSH/pkg.json new file mode 100644 index 000000000..a9cd4e585 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Netbackup-SSH/pkg.json @@ -0,0 +1,12 @@ +{ + "pkg_name": "centreon-plugin-Applications-Netbackup-Ssh", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_netbackup_ssh.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/plugins/script_custom/cli.pm", + "centreon/plugins/backend/ssh/", + "centreon/plugins/ssh.pm", + "apps/backup/netbackup/local/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Netbackup-SSH/rpm.json b/packaging/centreon-plugin-Applications-Netbackup-SSH/rpm.json new file mode 100644 index 000000000..3d203204e --- /dev/null +++ b/packaging/centreon-plugin-Applications-Netbackup-SSH/rpm.json @@ -0,0 +1,8 @@ +{ + "dependencies": [ + "perl", + "plink", + "perl(XML::Simple)", + "perl(Libssh::Session)" + ] +} diff --git a/packaging/centreon-plugin-Applications-Nginx-Plus-Restapi/deb.json b/packaging/centreon-plugin-Applications-Nginx-Plus-Restapi/deb.json new file mode 100644 index 000000000..d1383e463 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Nginx-Plus-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Nginx-Plus-Restapi/pkg.json b/packaging/centreon-plugin-Applications-Nginx-Plus-Restapi/pkg.json new file mode 100644 index 000000000..f69de39eb --- /dev/null +++ b/packaging/centreon-plugin-Applications-Nginx-Plus-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Nginx-Plus-Restapi", + "pkg_summary": "Centreon Plugin to monitor Nginx Plus software using Restapi", + "plugin_name": "centreon_nginx_plus_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/nginx/nginxplus/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Nginx-Plus-Restapi/rpm.json b/packaging/centreon-plugin-Applications-Nginx-Plus-Restapi/rpm.json new file mode 100644 index 000000000..d1383e463 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Nginx-Plus-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Nmap-Cli/deb.json b/packaging/centreon-plugin-Applications-Nmap-Cli/deb.json new file mode 100644 index 000000000..03419c6b0 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Nmap-Cli/deb.json @@ -0,0 +1,8 @@ +{ + "dependencies": [ + "centreon-plugins-sudoers", + "perl", + "nmap", + "libxml-simple-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Nmap-Cli/pkg.json b/packaging/centreon-plugin-Applications-Nmap-Cli/pkg.json new file mode 100644 index 000000000..117a69b1a --- /dev/null +++ b/packaging/centreon-plugin-Applications-Nmap-Cli/pkg.json @@ -0,0 +1,12 @@ +{ + "pkg_name": "centreon-plugin-Applications-Nmap-Cli", + "pkg_summary": "Centreon Plugin based on top of Nmap Binary", + "plugin_name": "centreon_nmap_cli.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/plugins/script_custom/cli.pm", + "centreon/plugins/backend/ssh/", + "centreon/plugins/ssh.pm", + "apps/nmap/cli/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Nmap-Cli/rpm.json b/packaging/centreon-plugin-Applications-Nmap-Cli/rpm.json new file mode 100644 index 000000000..c55c7aea1 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Nmap-Cli/rpm.json @@ -0,0 +1,10 @@ +{ + "dependencies": [ + "centreon-plugins-sudoers", + "perl", + "nmap", + "plink", + "perl(Libssh::Session)", + "perl(XML::Simple)" + ] +} diff --git a/packaging/centreon-plugin-Applications-Openldap-Ldap/deb.json b/packaging/centreon-plugin-Applications-Openldap-Ldap/deb.json new file mode 100644 index 000000000..f7050e33a --- /dev/null +++ b/packaging/centreon-plugin-Applications-Openldap-Ldap/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libnet-ldap-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Openldap-Ldap/pkg.json b/packaging/centreon-plugin-Applications-Openldap-Ldap/pkg.json new file mode 100644 index 000000000..dc3fd713f --- /dev/null +++ b/packaging/centreon-plugin-Applications-Openldap-Ldap/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Applications-Openldap-Ldap", + "pkg_summary": "Centreon Plugin to monitor Openldap using LDAP protocol", + "plugin_name": "centreon_openldap_ldap.pl", + "files": [ + "centreon/plugins/script_simple.pm", + "centreon/common/protocols/ldap/", + "apps/openldap/ldap/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Openldap-Ldap/rpm.json b/packaging/centreon-plugin-Applications-Openldap-Ldap/rpm.json new file mode 100644 index 000000000..70392ca68 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Openldap-Ldap/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(Time::HiRes)", + "perl(Net::LDAP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Openvpn-Omi/deb.json b/packaging/centreon-plugin-Applications-Openvpn-Omi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Openvpn-Omi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Openvpn-Omi/pkg.json b/packaging/centreon-plugin-Applications-Openvpn-Omi/pkg.json new file mode 100644 index 000000000..605ce0ebf --- /dev/null +++ b/packaging/centreon-plugin-Applications-Openvpn-Omi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Openvpn-Omi", + "pkg_summary": "Centreon Plugin to monitor Openvpn using management interface", + "plugin_name": "centreon_openvpn_omi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/openvpn/omi/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Openvpn-Omi/rpm.json b/packaging/centreon-plugin-Applications-Openvpn-Omi/rpm.json new file mode 100644 index 000000000..60b0d35fa --- /dev/null +++ b/packaging/centreon-plugin-Applications-Openvpn-Omi/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(IO::Socket::INET)" + ] +} diff --git a/packaging/centreon-plugin-Applications-Openweathermap-Restapi/deb.json b/packaging/centreon-plugin-Applications-Openweathermap-Restapi/deb.json new file mode 100644 index 000000000..540c269f3 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Openweathermap-Restapi/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libjson-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Openweathermap-Restapi/pkg.json b/packaging/centreon-plugin-Applications-Openweathermap-Restapi/pkg.json new file mode 100644 index 000000000..95a816312 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Openweathermap-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Openweathermap-Restapi", + "pkg_summary": "Centreon Plugin to monitor current weather conditions using OpenWeatherMap RestAPI", + "plugin_name": "centreon_openweathermap.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/openweathermap/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Openweathermap-Restapi/rpm.json b/packaging/centreon-plugin-Applications-Openweathermap-Restapi/rpm.json new file mode 100644 index 000000000..186961460 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Openweathermap-Restapi/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(JSON)" + ] +} diff --git a/packaging/centreon-plugin-Applications-Oracle-Goldengate-Ssh/deb.json b/packaging/centreon-plugin-Applications-Oracle-Goldengate-Ssh/deb.json new file mode 100644 index 000000000..2738a5418 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Oracle-Goldengate-Ssh/deb.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "libdatetime-perl", + "libssh-session-perl", + "plink" + ] +} diff --git a/packaging/centreon-plugin-Applications-Oracle-Goldengate-Ssh/pkg.json b/packaging/centreon-plugin-Applications-Oracle-Goldengate-Ssh/pkg.json new file mode 100644 index 000000000..e8b988ec2 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Oracle-Goldengate-Ssh/pkg.json @@ -0,0 +1,12 @@ +{ + "pkg_name": "centreon-plugin-Applications-Oracle-Goldengate-Ssh", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_oracle_gg_ssh.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/plugins/script_custom/cli.pm", + "centreon/plugins/backend/ssh/", + "centreon/plugins/ssh.pm", + "apps/oracle/gg/local/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Oracle-Goldengate-Ssh/rpm.json b/packaging/centreon-plugin-Applications-Oracle-Goldengate-Ssh/rpm.json new file mode 100644 index 000000000..d93a10164 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Oracle-Goldengate-Ssh/rpm.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Libssh::Session)", + "plink" + ] +} diff --git a/packaging/centreon-plugin-Applications-Oracle-Ovm-Api/deb.json b/packaging/centreon-plugin-Applications-Oracle-Ovm-Api/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Oracle-Ovm-Api/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Oracle-Ovm-Api/pkg.json b/packaging/centreon-plugin-Applications-Oracle-Ovm-Api/pkg.json new file mode 100644 index 000000000..00b405290 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Oracle-Ovm-Api/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Oracle-Ovm-Api", + "pkg_summary": "Centreon Plugin to monitor Oracle VM Manager using API", + "plugin_name": "centreon_oracle_ovm_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/oracle/ovm/api/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Oracle-Ovm-Api/rpm.json b/packaging/centreon-plugin-Applications-Oracle-Ovm-Api/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Oracle-Ovm-Api/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Pacemaker-SSH/deb.json b/packaging/centreon-plugin-Applications-Pacemaker-SSH/deb.json new file mode 100644 index 000000000..81f1c4ccb --- /dev/null +++ b/packaging/centreon-plugin-Applications-Pacemaker-SSH/deb.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "perl", + "plink", + "libxml-simple-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Pacemaker-SSH/pkg.json b/packaging/centreon-plugin-Applications-Pacemaker-SSH/pkg.json new file mode 100644 index 000000000..c7aba2663 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Pacemaker-SSH/pkg.json @@ -0,0 +1,12 @@ +{ + "pkg_name": "centreon-plugin-Applications-Pacemaker-Ssh", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_pacemaker_ssh.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/plugins/script_custom/cli.pm", + "centreon/plugins/backend/ssh/", + "centreon/plugins/ssh.pm", + "apps/pacemaker/local/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Pacemaker-SSH/rpm.json b/packaging/centreon-plugin-Applications-Pacemaker-SSH/rpm.json new file mode 100644 index 000000000..c29bdf63a --- /dev/null +++ b/packaging/centreon-plugin-Applications-Pacemaker-SSH/rpm.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "perl", + "plink", + "perl(XML::Simple)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Peoplesoft-Jmx/deb.json b/packaging/centreon-plugin-Applications-Peoplesoft-Jmx/deb.json new file mode 100644 index 000000000..41a67333c --- /dev/null +++ b/packaging/centreon-plugin-Applications-Peoplesoft-Jmx/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libjmx4perl-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Peoplesoft-Jmx/pkg.json b/packaging/centreon-plugin-Applications-Peoplesoft-Jmx/pkg.json new file mode 100644 index 000000000..cb1204565 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Peoplesoft-Jmx/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Applications-Peoplesoft-Jmx", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_peoplesoft_jmx.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/common/protocols/jmx/", + "apps/java/peoplesoft/jmx/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Peoplesoft-Jmx/rpm.json b/packaging/centreon-plugin-Applications-Peoplesoft-Jmx/rpm.json new file mode 100644 index 000000000..5d2a81f7a --- /dev/null +++ b/packaging/centreon-plugin-Applications-Peoplesoft-Jmx/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(JMX::Jmx4Perl)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Pfsense-Fauxapi/deb.json b/packaging/centreon-plugin-Applications-Pfsense-Fauxapi/deb.json new file mode 100644 index 000000000..5d5c24728 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Pfsense-Fauxapi/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libdatetime-perl", + "libdigest-sha-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Pfsense-Fauxapi/pkg.json b/packaging/centreon-plugin-Applications-Pfsense-Fauxapi/pkg.json new file mode 100644 index 000000000..c277d0874 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Pfsense-Fauxapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Pfsense-Fauxapi", + "pkg_summary": "Centreon Plugin to monitor Pfsense resources using Fauxapi", + "plugin_name": "centreon_pfsense_fauxapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/pfsense/fauxapi/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Pfsense-Fauxapi/rpm.json b/packaging/centreon-plugin-Applications-Pfsense-Fauxapi/rpm.json new file mode 100644 index 000000000..5c6eab0d4 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Pfsense-Fauxapi/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Applications-Php-Apc-Web/deb.json b/packaging/centreon-plugin-Applications-Php-Apc-Web/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Php-Apc-Web/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Php-Apc-Web/pkg.json b/packaging/centreon-plugin-Applications-Php-Apc-Web/pkg.json new file mode 100644 index 000000000..1ebf0e8a2 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Php-Apc-Web/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Php-Apc-Web", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_php_apc_web.pl", + "files": [ + "centreon/plugins/script_simple.pm", + "apps/php/apc/web" + ] +} diff --git a/packaging/centreon-plugin-Applications-Php-Apc-Web/rpm.json b/packaging/centreon-plugin-Applications-Php-Apc-Web/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Php-Apc-Web/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Php-Fpm-Web/deb.json b/packaging/centreon-plugin-Applications-Php-Fpm-Web/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Php-Fpm-Web/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Php-Fpm-Web/pkg.json b/packaging/centreon-plugin-Applications-Php-Fpm-Web/pkg.json new file mode 100644 index 000000000..e9220b680 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Php-Fpm-Web/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Php-Fpm-Web", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_php_fpm_web.pl", + "files": [ + "centreon/plugins/script_simple.pm", + "apps/php/fpm/web" + ] +} diff --git a/packaging/centreon-plugin-Applications-Php-Fpm-Web/rpm.json b/packaging/centreon-plugin-Applications-Php-Fpm-Web/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Php-Fpm-Web/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Pineapp-Securemail-Snmp/deb.json b/packaging/centreon-plugin-Applications-Pineapp-Securemail-Snmp/deb.json new file mode 100644 index 000000000..5d24d64c4 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Pineapp-Securemail-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Pineapp-Securemail-Snmp/pkg.json b/packaging/centreon-plugin-Applications-Pineapp-Securemail-Snmp/pkg.json new file mode 100644 index 000000000..dff7ade22 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Pineapp-Securemail-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Applications-Pineapp-Securemail-Snmp", + "pkg_summary": "Centreon Plugin to monitor Pineapp Securemail resources using SNMP", + "plugin_name": "centreon_pineapp_securemail_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "apps/pineapp/securemail/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Pineapp-Securemail-Snmp/rpm.json b/packaging/centreon-plugin-Applications-Pineapp-Securemail-Snmp/rpm.json new file mode 100644 index 000000000..14e966306 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Pineapp-Securemail-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} diff --git a/packaging/centreon-plugin-Applications-Protocol-Bgp-Snmp/deb.json b/packaging/centreon-plugin-Applications-Protocol-Bgp-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Bgp-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Protocol-Bgp-Snmp/pkg.json b/packaging/centreon-plugin-Applications-Protocol-Bgp-Snmp/pkg.json new file mode 100644 index 000000000..f0bf23e84 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Bgp-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Applications-Protocol-Bgp-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_protocol_bgp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "apps/protocols/bgp/4/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Protocol-Bgp-Snmp/rpm.json b/packaging/centreon-plugin-Applications-Protocol-Bgp-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Bgp-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Protocol-Bgp/deb.json b/packaging/centreon-plugin-Applications-Protocol-Bgp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Bgp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Protocol-Bgp/pkg.json b/packaging/centreon-plugin-Applications-Protocol-Bgp/pkg.json new file mode 100644 index 000000000..2c5211150 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Bgp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Applications-Protocol-Bgp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_protocol_bgp4.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "apps/protocols/bgp/4/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Protocol-Bgp/rpm.json b/packaging/centreon-plugin-Applications-Protocol-Bgp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Bgp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Protocol-Cifs/deb.json b/packaging/centreon-plugin-Applications-Protocol-Cifs/deb.json new file mode 100644 index 000000000..27dff2904 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Cifs/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libfilesys-smbclient-perl", + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Protocol-Cifs/pkg.json b/packaging/centreon-plugin-Applications-Protocol-Cifs/pkg.json new file mode 100644 index 000000000..58b75e1e0 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Cifs/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Protocol-Cifs", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_protocol_cifs.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/protocols/cifs/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Protocol-Cifs/rpm.json b/packaging/centreon-plugin-Applications-Protocol-Cifs/rpm.json new file mode 100644 index 000000000..87294efac --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Cifs/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(Filesys::SmbClient)", + "perl(DateTime)" + ] +} diff --git a/packaging/centreon-plugin-Applications-Protocol-Dhcp/deb.json b/packaging/centreon-plugin-Applications-Protocol-Dhcp/deb.json new file mode 100644 index 000000000..d71708585 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Dhcp/deb.json @@ -0,0 +1,8 @@ +{ + "dependencies": [ + "centreon-plugins-sudoers", + "libsocket-perl", + "libnet-dhcp-perl", + "libnet-subnet-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Protocol-Dhcp/pkg.json b/packaging/centreon-plugin-Applications-Protocol-Dhcp/pkg.json new file mode 100644 index 000000000..463146f61 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Dhcp/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Protocol-Dhcp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_protocol_dhcp.pl", + "files": [ + "centreon/plugins/script_simple.pm", + "apps/protocols/dhcp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Protocol-Dhcp/rpm.json b/packaging/centreon-plugin-Applications-Protocol-Dhcp/rpm.json new file mode 100644 index 000000000..230ce78c0 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Dhcp/rpm.json @@ -0,0 +1,10 @@ +{ + "dependencies": [ + "centreon-plugins-sudoers", + "perl(IO::Socket)", + "perl(IO::Select)", + "perl(Net::DHCP::Packet)", + "perl(Net::DHCP::Constants)", + "perl(Net::Subnet)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Protocol-Dns/deb.json b/packaging/centreon-plugin-Applications-Protocol-Dns/deb.json new file mode 100644 index 000000000..116c762e1 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Dns/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libnet-dns-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Protocol-Dns/pkg.json b/packaging/centreon-plugin-Applications-Protocol-Dns/pkg.json new file mode 100644 index 000000000..9daa79c06 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Dns/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Protocol-Dns", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_protocol_dns.pl", + "files": [ + "centreon/plugins/script_simple.pm", + "apps/protocols/dns/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Protocol-Dns/rpm.json b/packaging/centreon-plugin-Applications-Protocol-Dns/rpm.json new file mode 100644 index 000000000..8a3aef6e1 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Dns/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(Net::DNS)", + "perl(Time::HiRes)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Protocol-Ftp/deb.json b/packaging/centreon-plugin-Applications-Protocol-Ftp/deb.json new file mode 100644 index 000000000..b3c86ef8e --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Ftp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl-modules" + ] +} diff --git a/packaging/centreon-plugin-Applications-Protocol-Ftp/pkg.json b/packaging/centreon-plugin-Applications-Protocol-Ftp/pkg.json new file mode 100644 index 000000000..fed26f602 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Ftp/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Protocol-Ftp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_protocol_ftp.pl", + "files": [ + "centreon/plugins/script_simple.pm", + "apps/protocols/ftp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Protocol-Ftp/rpm.json b/packaging/centreon-plugin-Applications-Protocol-Ftp/rpm.json new file mode 100644 index 000000000..121ae8b67 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Ftp/rpm.json @@ -0,0 +1,8 @@ +{ + "dependencies": [ + "perl(Net::FTP)", + "perl(Net::FTPSSL)", + "perl(Time::HiRes)", + "perl(File::Basename)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Protocol-Http/deb.json b/packaging/centreon-plugin-Applications-Protocol-Http/deb.json new file mode 100644 index 000000000..e79bebd9d --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Http/deb.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "libjson-perl", + "libxml-xpath-perl", + "libxml-libxml-simple-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Protocol-Http/pkg.json b/packaging/centreon-plugin-Applications-Protocol-Http/pkg.json new file mode 100644 index 000000000..772bfc5a7 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Http/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Protocol-Http", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_protocol_http.pl", + "files": [ + "centreon/plugins/script_simple.pm", + "apps/protocols/http/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Protocol-Http/rpm.json b/packaging/centreon-plugin-Applications-Protocol-Http/rpm.json new file mode 100644 index 000000000..da3c74fa7 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Http/rpm.json @@ -0,0 +1,8 @@ +{ + "dependencies": [ + "perl(JSON)", + "perl(Time::HiRes)", + "perl(XML::XPath)", + "perl(XML::LibXML::Simple)" + ] +} diff --git a/packaging/centreon-plugin-Applications-Protocol-Imap/deb.json b/packaging/centreon-plugin-Applications-Protocol-Imap/deb.json new file mode 100644 index 000000000..5f5d0ada4 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Imap/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libmail-imapclient-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Protocol-Imap/pkg.json b/packaging/centreon-plugin-Applications-Protocol-Imap/pkg.json new file mode 100644 index 000000000..92d2f38bb --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Imap/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Protocol-Imap", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_protocol_imap.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/protocols/imap/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Protocol-Imap/rpm.json b/packaging/centreon-plugin-Applications-Protocol-Imap/rpm.json new file mode 100644 index 000000000..36fd55ec9 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Imap/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(Time::HiRes)", + "perl-Mail-IMAPClient" + ] +} diff --git a/packaging/centreon-plugin-Applications-Protocol-Jmx/deb.json b/packaging/centreon-plugin-Applications-Protocol-Jmx/deb.json new file mode 100644 index 000000000..41a67333c --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Jmx/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libjmx4perl-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Protocol-Jmx/pkg.json b/packaging/centreon-plugin-Applications-Protocol-Jmx/pkg.json new file mode 100644 index 000000000..2d345adb7 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Jmx/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Applications-Protocol-Jmx", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_protocol_jmx.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/common/protocols/jmx/", + "apps/protocols/jmx/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Protocol-Jmx/rpm.json b/packaging/centreon-plugin-Applications-Protocol-Jmx/rpm.json new file mode 100644 index 000000000..ba9e41386 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Jmx/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(JMX::Jmx4Perl)", + "perl(JSON::Path)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Protocol-Ldap/deb.json b/packaging/centreon-plugin-Applications-Protocol-Ldap/deb.json new file mode 100644 index 000000000..f7050e33a --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Ldap/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libnet-ldap-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Protocol-Ldap/pkg.json b/packaging/centreon-plugin-Applications-Protocol-Ldap/pkg.json new file mode 100644 index 000000000..44084621e --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Ldap/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Applications-Protocol-Ldap", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_protocol_ldap.pl", + "files": [ + "centreon/plugins/script_simple.pm", + "centreon/common/protocols/ldap/", + "apps/protocols/ldap/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Protocol-Ldap/rpm.json b/packaging/centreon-plugin-Applications-Protocol-Ldap/rpm.json new file mode 100644 index 000000000..70392ca68 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Ldap/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(Time::HiRes)", + "perl(Net::LDAP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Protocol-Modbus/deb.json b/packaging/centreon-plugin-Applications-Protocol-Modbus/deb.json new file mode 100644 index 000000000..a7ec3ffad --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Modbus/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libdevice-modbus-rtu-perl", + "libdevice-modbus-tcp-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Protocol-Modbus/pkg.json b/packaging/centreon-plugin-Applications-Protocol-Modbus/pkg.json new file mode 100644 index 000000000..f4f076de6 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Modbus/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Applications-Protocol-Modbus", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_protocol_modbus.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/common/protocols/modbus/", + "apps/protocols/modbus/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Protocol-Modbus/rpm.json b/packaging/centreon-plugin-Applications-Protocol-Modbus/rpm.json new file mode 100644 index 000000000..b59fc28ba --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Modbus/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(Device::Modbus::RTU::Client)", + "perl(Device::Modbus::TCP::Client)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Protocol-Nrpe/deb.json b/packaging/centreon-plugin-Applications-Protocol-Nrpe/deb.json new file mode 100644 index 000000000..c6b814c4a --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Nrpe/deb.json @@ -0,0 +1,9 @@ +{ + "dependencies": [ + "libjson-perl", + "libconvert-binary-c-perl", + "libdigest-crc-perl", + "libio-socket-inet6-perl", + "libsocket-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Protocol-Nrpe/pkg.json b/packaging/centreon-plugin-Applications-Protocol-Nrpe/pkg.json new file mode 100644 index 000000000..2ed945a27 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Nrpe/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Applications-Protocol-Nrpe", + "pkg_summary": "Centreon Plugin to trigger commands against NRPE/NSClient agent", + "plugin_name": "centreon_protocol_nrpe.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/plugins/nrpe.pm", + "apps/protocols/nrpe/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Protocol-Nrpe/rpm.json b/packaging/centreon-plugin-Applications-Protocol-Nrpe/rpm.json new file mode 100644 index 000000000..56d6b7fb2 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Nrpe/rpm.json @@ -0,0 +1,9 @@ +{ + "dependencies": [ + "perl(Convert::Binary::C)", + "perl(Digest::CRC)", + "perl(IO::Socket::INET6)", + "perl(IO::Socket)", + "perl(Socket)" + ] +} diff --git a/packaging/centreon-plugin-Applications-Protocol-Ntp/deb.json b/packaging/centreon-plugin-Applications-Protocol-Ntp/deb.json new file mode 100644 index 000000000..2eefa000e --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Ntp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libnet-ntp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Protocol-Ntp/pkg.json b/packaging/centreon-plugin-Applications-Protocol-Ntp/pkg.json new file mode 100644 index 000000000..9e3c56752 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Ntp/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Protocol-Ntp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_protocol_ntp.pl", + "files": [ + "centreon/plugins/script_simple.pm", + "apps/protocols/ntp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Protocol-Ntp/rpm.json b/packaging/centreon-plugin-Applications-Protocol-Ntp/rpm.json new file mode 100644 index 000000000..7c0d0a427 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Ntp/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(Time::HiRes)", + "perl(Net::NTP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Protocol-Ospf/deb.json b/packaging/centreon-plugin-Applications-Protocol-Ospf/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Ospf/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Protocol-Ospf/pkg.json b/packaging/centreon-plugin-Applications-Protocol-Ospf/pkg.json new file mode 100644 index 000000000..99c57fccb --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Ospf/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Applications-Protocol-Ospf", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_protocol_ospf.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "apps/protocols/ospf/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Protocol-Ospf/rpm.json b/packaging/centreon-plugin-Applications-Protocol-Ospf/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Ospf/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Protocol-Radius/deb.json b/packaging/centreon-plugin-Applications-Protocol-Radius/deb.json new file mode 100644 index 000000000..90e90846d --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Radius/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libauthen-radius-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Protocol-Radius/pkg.json b/packaging/centreon-plugin-Applications-Protocol-Radius/pkg.json new file mode 100644 index 000000000..f981e8ed0 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Radius/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Protocol-Radius", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_protocol_radius.pl", + "files": [ + "centreon/plugins/script_simple.pm", + "apps/protocols/radius/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Protocol-Radius/rpm.json b/packaging/centreon-plugin-Applications-Protocol-Radius/rpm.json new file mode 100644 index 000000000..98cec7939 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Radius/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(Authen::Radius)", + "perl(Time::HiRes)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Protocol-Sftp/deb.json b/packaging/centreon-plugin-Applications-Protocol-Sftp/deb.json new file mode 100644 index 000000000..2b107cce6 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Sftp/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libssh-session-perl", + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Protocol-Sftp/pkg.json b/packaging/centreon-plugin-Applications-Protocol-Sftp/pkg.json new file mode 100644 index 000000000..d0939fe32 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Sftp/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Protocol-Sftp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_protocol_sftp.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/protocols/sftp/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Protocol-Sftp/rpm.json b/packaging/centreon-plugin-Applications-Protocol-Sftp/rpm.json new file mode 100644 index 000000000..4234b54b4 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Sftp/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(Libssh::Session)", + "perl(DateTime)" + ] +} diff --git a/packaging/centreon-plugin-Applications-Protocol-Smtp/deb.json b/packaging/centreon-plugin-Applications-Protocol-Smtp/deb.json new file mode 100644 index 000000000..c81a4f5c1 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Smtp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libemail-send-smtp-gmail-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Protocol-Smtp/pkg.json b/packaging/centreon-plugin-Applications-Protocol-Smtp/pkg.json new file mode 100644 index 000000000..6570c982a --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Smtp/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Protocol-Smtp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_protocol_smtp.pl", + "files": [ + "centreon/plugins/script_simple.pm", + "apps/protocols/smtp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Protocol-Smtp/rpm.json b/packaging/centreon-plugin-Applications-Protocol-Smtp/rpm.json new file mode 100644 index 000000000..773f37d7c --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Smtp/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(Time::HiRes)", + "perl(Email::Send::SMTP::Gmail)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Protocol-Snmp/deb.json b/packaging/centreon-plugin-Applications-Protocol-Snmp/deb.json new file mode 100644 index 000000000..5d24d64c4 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Protocol-Snmp/pkg.json b/packaging/centreon-plugin-Applications-Protocol-Snmp/pkg.json new file mode 100644 index 000000000..72bc0b4d6 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Snmp/pkg.json @@ -0,0 +1,23 @@ +{ + "pkg_name": "centreon-plugin-Applications-Protocol-Snmp", + "pkg_summary": "Centreon Plugin to monitor any equipment with SNMP agent", + "plugin_name": "centreon_generic_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/script_custom.pm", + "centreon/plugins/backend/ssh/", + "centreon/plugins/ssh.pm", + "centreon/plugins/snmp.pm", + "apps/protocols/snmp/", + "snmp_standard/mode/dynamiccommand.pm", + "snmp_standard/mode/discovery.pm", + "snmp_standard/mode/numericvalue.pm", + "snmp_standard/mode/stringvalue.pm", + "snmp_standard/mode/uptime.pm", + "os/linux/local/plugin.pm", + "os/linux/local/custom/cli.pm", + "os/linux/local/mode/resources/discovery.pm", + "os/linux/local/mode/discoverysnmp.pm", + "os/linux/local/mode/discoverysnmpv3.pm" + ] +} diff --git a/packaging/centreon-plugin-Applications-Protocol-Snmp/rpm.json b/packaging/centreon-plugin-Applications-Protocol-Snmp/rpm.json new file mode 100644 index 000000000..375ecc290 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Snmp/rpm.json @@ -0,0 +1,8 @@ +{ + "dependencies": [ + "perl(SNMP)", + "perl(Digest::MD5)", + "perl(NetAddr::IP)" + ], + "custom_pkg_data": "Obsoletes: centreon-plugin-Generic-Snmp" +} diff --git a/packaging/centreon-plugin-Applications-Protocol-Ssh/deb.json b/packaging/centreon-plugin-Applications-Protocol-Ssh/deb.json new file mode 100644 index 000000000..050431990 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Ssh/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libssh-session-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Protocol-Ssh/pkg.json b/packaging/centreon-plugin-Applications-Protocol-Ssh/pkg.json new file mode 100644 index 000000000..e5bffa6e7 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Ssh/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Applications-Protocol-Ssh", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_protocol_ssh.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/common/protocols/ssh/", + "apps/protocols/ssh/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Protocol-Ssh/rpm.json b/packaging/centreon-plugin-Applications-Protocol-Ssh/rpm.json new file mode 100644 index 000000000..09cfe9c1e --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Ssh/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(Libssh::Session)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Protocol-Tcp/deb.json b/packaging/centreon-plugin-Applications-Protocol-Tcp/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Tcp/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Protocol-Tcp/pkg.json b/packaging/centreon-plugin-Applications-Protocol-Tcp/pkg.json new file mode 100644 index 000000000..8a55c229e --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Tcp/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Protocol-Tcp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_protocol_tcp.pl", + "files": [ + "centreon/plugins/script_simple.pm", + "apps/protocols/tcp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Protocol-Tcp/rpm.json b/packaging/centreon-plugin-Applications-Protocol-Tcp/rpm.json new file mode 100644 index 000000000..3fe76692c --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Tcp/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(Time::HiRes)", + "perl(IO::Socket::SSL)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Protocol-Telnet/deb.json b/packaging/centreon-plugin-Applications-Protocol-Telnet/deb.json new file mode 100644 index 000000000..44dc1ab74 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Telnet/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libnet-telnet-perl", + "libjson-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Protocol-Telnet/pkg.json b/packaging/centreon-plugin-Applications-Protocol-Telnet/pkg.json new file mode 100644 index 000000000..cfc761ba5 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Telnet/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Protocol-Telnet", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_protocol_telnet.pl", + "files": [ + "centreon/plugins/script_simple.pm", + "apps/protocols/telnet/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Protocol-Telnet/rpm.json b/packaging/centreon-plugin-Applications-Protocol-Telnet/rpm.json new file mode 100644 index 000000000..312a59c23 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Telnet/rpm.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "perl(Net::Telnet)", + "perl(Time::HiRes)", + "perl(JSON)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Protocol-Tftp/deb.json b/packaging/centreon-plugin-Applications-Protocol-Tftp/deb.json new file mode 100644 index 000000000..cdc10c64d --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Tftp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libnet-tftp-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Protocol-Tftp/pkg.json b/packaging/centreon-plugin-Applications-Protocol-Tftp/pkg.json new file mode 100644 index 000000000..9600c5122 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Tftp/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Protocol-Tftp", + "pkg_summary": "Centreon Plugin Protocol TFTP", + "plugin_name": "centreon_protocol_tftp.pl", + "files": [ + "centreon/plugins/script_simple.pm", + "apps/protocols/tftp/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Protocol-Tftp/rpm.json b/packaging/centreon-plugin-Applications-Protocol-Tftp/rpm.json new file mode 100644 index 000000000..50c87ec93 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Tftp/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(Net::TFTP)", + "perl(Time::HiRes)" + ] +} diff --git a/packaging/centreon-plugin-Applications-Protocol-Udp/deb.json b/packaging/centreon-plugin-Applications-Protocol-Udp/deb.json new file mode 100644 index 000000000..a8d37f9bf --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Udp/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "centreon-plugins-sudoers", + "libio-socket-ip-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Protocol-Udp/pkg.json b/packaging/centreon-plugin-Applications-Protocol-Udp/pkg.json new file mode 100644 index 000000000..cef094e02 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Udp/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Protocol-Udp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_protocol_udp.pl", + "files": [ + "centreon/plugins/script_simple.pm", + "apps/protocols/udp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Protocol-Udp/rpm.json b/packaging/centreon-plugin-Applications-Protocol-Udp/rpm.json new file mode 100644 index 000000000..de4b5fb39 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Udp/rpm.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "centreon-plugins-sudoers", + "perl(IO::Select)", + "perl(IO::Socket::INET)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Protocol-Whois/deb.json b/packaging/centreon-plugin-Applications-Protocol-Whois/deb.json new file mode 100644 index 000000000..82dc01b5d --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Whois/deb.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "libdatetime-perl", + "libssh-session-perl", + "whois" + ] +} diff --git a/packaging/centreon-plugin-Applications-Protocol-Whois/pkg.json b/packaging/centreon-plugin-Applications-Protocol-Whois/pkg.json new file mode 100644 index 000000000..41215fe74 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Whois/pkg.json @@ -0,0 +1,12 @@ +{ + "pkg_name": "centreon-plugin-Applications-Protocol-Whois", + "pkg_summary": "Centreon Plugin to monitor domain validity", + "plugin_name": "centreon_protocol_whois.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/plugins/script_custom/cli.pm", + "centreon/plugins/backend/ssh/", + "centreon/plugins/ssh.pm", + "apps/protocols/whois/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Protocol-Whois/rpm.json b/packaging/centreon-plugin-Applications-Protocol-Whois/rpm.json new file mode 100644 index 000000000..a0f5cc77f --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-Whois/rpm.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Libssh::Session)", + "whois" + ] +} diff --git a/packaging/centreon-plugin-Applications-Protocol-X509/deb.json b/packaging/centreon-plugin-Applications-Protocol-X509/deb.json new file mode 100644 index 000000000..68c788741 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-X509/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libnet-ssleay-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Protocol-X509/pkg.json b/packaging/centreon-plugin-Applications-Protocol-X509/pkg.json new file mode 100644 index 000000000..1fdcba204 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-X509/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Protocol-X509", + "pkg_summary": "Centreon Plugin to monitor X509 certificates", + "plugin_name": "centreon_protocol_x509.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/protocols/x509/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Protocol-X509/rpm.json b/packaging/centreon-plugin-Applications-Protocol-X509/rpm.json new file mode 100644 index 000000000..72068fa9b --- /dev/null +++ b/packaging/centreon-plugin-Applications-Protocol-X509/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(Net::SSLeay)", + "perl(DateTime)" + ] +} diff --git a/packaging/centreon-plugin-Applications-Proxmox-Mg-Api/deb.json b/packaging/centreon-plugin-Applications-Proxmox-Mg-Api/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Proxmox-Mg-Api/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Proxmox-Mg-Api/pkg.json b/packaging/centreon-plugin-Applications-Proxmox-Mg-Api/pkg.json new file mode 100644 index 000000000..e0eea5349 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Proxmox-Mg-Api/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Proxmox-Mg-Api", + "pkg_summary": "Centreon Plugin to monitor Proxmox Mail Gateway throught Rest API", + "plugin_name": "centreon_proxmox_mg_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/proxmox/mg/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Proxmox-Mg-Api/rpm.json b/packaging/centreon-plugin-Applications-Proxmox-Mg-Api/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Proxmox-Mg-Api/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Pvx-Restapi/deb.json b/packaging/centreon-plugin-Applications-Pvx-Restapi/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Pvx-Restapi/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Pvx-Restapi/pkg.json b/packaging/centreon-plugin-Applications-Pvx-Restapi/pkg.json new file mode 100644 index 000000000..6ae2d7c5f --- /dev/null +++ b/packaging/centreon-plugin-Applications-Pvx-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Pvx-Restapi", + "pkg_summary": "Centreon Plugin to monitor PVX (Performance Vision) monitoring system using RestAPI", + "plugin_name": "centreon_pvx_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/pvx/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Pvx-Restapi/rpm.json b/packaging/centreon-plugin-Applications-Pvx-Restapi/rpm.json new file mode 100644 index 000000000..4db4877ce --- /dev/null +++ b/packaging/centreon-plugin-Applications-Pvx-Restapi/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Applications-Rabbitmq-Restapi/deb.json b/packaging/centreon-plugin-Applications-Rabbitmq-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Rabbitmq-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Rabbitmq-Restapi/pkg.json b/packaging/centreon-plugin-Applications-Rabbitmq-Restapi/pkg.json new file mode 100644 index 000000000..25549cc8f --- /dev/null +++ b/packaging/centreon-plugin-Applications-Rabbitmq-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Rabbitmq-Restapi", + "pkg_summary": "Centreon Plugin to monitor RabbitMQ using RestAPI", + "plugin_name": "centreon_rabbitmq_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/mq/rabbitmq/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Rabbitmq-Restapi/rpm.json b/packaging/centreon-plugin-Applications-Rabbitmq-Restapi/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Rabbitmq-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Rapidrecovery-Snmp/deb.json b/packaging/centreon-plugin-Applications-Rapidrecovery-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Applications-Rapidrecovery-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Rapidrecovery-Snmp/pkg.json b/packaging/centreon-plugin-Applications-Rapidrecovery-Snmp/pkg.json new file mode 100644 index 000000000..575ef0669 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Rapidrecovery-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Applications-Rapidrecovery-Snmp", + "pkg_summary": "Centreon Plugin to monitor Rapid Recovery Application From Quest Software using SNMP", + "plugin_name": "centreon_rapidrecovery_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "apps/backup/rapidrecovery/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Rapidrecovery-Snmp/rpm.json b/packaging/centreon-plugin-Applications-Rapidrecovery-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Applications-Rapidrecovery-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Redis-Rlec-Restapi/deb.json b/packaging/centreon-plugin-Applications-Redis-Rlec-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Redis-Rlec-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Redis-Rlec-Restapi/pkg.json b/packaging/centreon-plugin-Applications-Redis-Rlec-Restapi/pkg.json new file mode 100644 index 000000000..06f7b7f36 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Redis-Rlec-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Redis-Rlec-Restapi", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_redis_rlec_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/redis/rlec/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Redis-Rlec-Restapi/rpm.json b/packaging/centreon-plugin-Applications-Redis-Rlec-Restapi/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Redis-Rlec-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Redis-Sentinel/deb.json b/packaging/centreon-plugin-Applications-Redis-Sentinel/deb.json new file mode 100644 index 000000000..21f204f89 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Redis-Sentinel/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "plink", + "libssh-session-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Redis-Sentinel/pkg.json b/packaging/centreon-plugin-Applications-Redis-Sentinel/pkg.json new file mode 100644 index 000000000..95a711a40 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Redis-Sentinel/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Applications-Redis-Sentinel", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_redis_sentinel.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/plugins/backend/ssh/", + "centreon/plugins/ssh.pm", + "apps/redis/sentinel/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Redis-Sentinel/rpm.json b/packaging/centreon-plugin-Applications-Redis-Sentinel/rpm.json new file mode 100644 index 000000000..60fcdb79d --- /dev/null +++ b/packaging/centreon-plugin-Applications-Redis-Sentinel/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "plink", + "perl(Libssh::Session)" + ] +} diff --git a/packaging/centreon-plugin-Applications-Rubrik-Restapi/deb.json b/packaging/centreon-plugin-Applications-Rubrik-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Rubrik-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Rubrik-Restapi/pkg.json b/packaging/centreon-plugin-Applications-Rubrik-Restapi/pkg.json new file mode 100644 index 000000000..43c39f902 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Rubrik-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Rubrik-Restapi", + "pkg_summary": "Centreon Plugin to monitor Rubrik using Rest API", + "plugin_name": "centreon_rubrik_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/backup/rubrik/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Rubrik-Restapi/rpm.json b/packaging/centreon-plugin-Applications-Rubrik-Restapi/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Rubrik-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Rudder-Restapi/deb.json b/packaging/centreon-plugin-Applications-Rudder-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Rudder-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Rudder-Restapi/pkg.json b/packaging/centreon-plugin-Applications-Rudder-Restapi/pkg.json new file mode 100644 index 000000000..ab5d7664c --- /dev/null +++ b/packaging/centreon-plugin-Applications-Rudder-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Rudder-Restapi", + "pkg_summary": "Centreon Plugin to monitor Rudder using RestAPI", + "plugin_name": "centreon_rudder_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/rudder/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Rudder-Restapi/rpm.json b/packaging/centreon-plugin-Applications-Rudder-Restapi/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Rudder-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Sahipro-Restapi/deb.json b/packaging/centreon-plugin-Applications-Sahipro-Restapi/deb.json new file mode 100644 index 000000000..046679b35 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Sahipro-Restapi/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libdatetime-perl", + "libxml-simple-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Sahipro-Restapi/pkg.json b/packaging/centreon-plugin-Applications-Sahipro-Restapi/pkg.json new file mode 100644 index 000000000..47214fdcd --- /dev/null +++ b/packaging/centreon-plugin-Applications-Sahipro-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Sahipro-Restapi", + "pkg_summary": "Centreon Plugin SahiPro Rest API", + "plugin_name": "centreon_sahipro_restapi.pl", + "files": [ + "centreon/plugins/script_simple.pm", + "apps/sahipro/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Sahipro-Restapi/rpm.json b/packaging/centreon-plugin-Applications-Sahipro-Restapi/rpm.json new file mode 100644 index 000000000..cd22ec814 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Sahipro-Restapi/rpm.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "perl(Time::HiRes)", + "perl(XML::Simple)", + "perl(DateTime)" + ] +} diff --git a/packaging/centreon-plugin-Applications-Salesforce-Restapi/deb.json b/packaging/centreon-plugin-Applications-Salesforce-Restapi/deb.json new file mode 100644 index 000000000..540c269f3 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Salesforce-Restapi/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libjson-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Salesforce-Restapi/pkg.json b/packaging/centreon-plugin-Applications-Salesforce-Restapi/pkg.json new file mode 100644 index 000000000..fe93733d8 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Salesforce-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Salesforce-Restapi", + "pkg_summary": "Centreon Plugin Salesforce monitoring", + "plugin_name": "centreon_salesforce_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/salesforce/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Salesforce-Restapi/rpm.json b/packaging/centreon-plugin-Applications-Salesforce-Restapi/rpm.json new file mode 100644 index 000000000..186961460 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Salesforce-Restapi/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(JSON)" + ] +} diff --git a/packaging/centreon-plugin-Applications-Selenium/deb.json b/packaging/centreon-plugin-Applications-Selenium/deb.json new file mode 100644 index 000000000..29b217c63 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Selenium/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libxml-xpath-perl", + "libtest-www-selenium-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Selenium/pkg.json b/packaging/centreon-plugin-Applications-Selenium/pkg.json new file mode 100644 index 000000000..9e9461fdf --- /dev/null +++ b/packaging/centreon-plugin-Applications-Selenium/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Selenium", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_selenium.pl", + "files": [ + "centreon/plugins/script_simple.pm", + "apps/selenium/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Selenium/rpm.json b/packaging/centreon-plugin-Applications-Selenium/rpm.json new file mode 100644 index 000000000..bf7689fb0 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Selenium/rpm.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "perl(Time::HiRes)", + "perl(XML::XPath)", + "perl(WWW::Selenium)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Sendmail-Snmp/deb.json b/packaging/centreon-plugin-Applications-Sendmail-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Applications-Sendmail-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Sendmail-Snmp/pkg.json b/packaging/centreon-plugin-Applications-Sendmail-Snmp/pkg.json new file mode 100644 index 000000000..1933829ad --- /dev/null +++ b/packaging/centreon-plugin-Applications-Sendmail-Snmp/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Applications-Sendmail-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_sendmail_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/mtausage.pm", + "apps/sendmail/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Sendmail-Snmp/rpm.json b/packaging/centreon-plugin-Applications-Sendmail-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Applications-Sendmail-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Skype-2015-Mssql/deb.json b/packaging/centreon-plugin-Applications-Skype-2015-Mssql/deb.json new file mode 100644 index 000000000..34cd170e4 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Skype-2015-Mssql/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdbi-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Skype-2015-Mssql/pkg.json b/packaging/centreon-plugin-Applications-Skype-2015-Mssql/pkg.json new file mode 100644 index 000000000..1b37e5552 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Skype-2015-Mssql/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Applications-Skype-2015-Mssql", + "pkg_summary": "Centreon Plugin to monitor Skype For Business 2015 using the SQL database", + "plugin_name": "centreon_skype_2015_sql.pl", + "files": [ + "centreon/plugins/script_simple.pm", + "centreon/plugins/script_sql.pm", + "centreon/plugins/dbi.pm", + "centreon/common/protocols/sql/", + "centreon/common/microsoft/skype/mssql/", + "database/mssql/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Skype-2015-Mssql/rpm.json b/packaging/centreon-plugin-Applications-Skype-2015-Mssql/rpm.json new file mode 100644 index 000000000..12fa8b254 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Skype-2015-Mssql/rpm.json @@ -0,0 +1,9 @@ +{ + "dependencies": [ + "perl(DBI)", + "perl(Digest::MD5)", + "perl(Data::Dumper)", + "perl(Time::HiRes)", + "perl(POSIX)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Slack-Restapi/deb.json b/packaging/centreon-plugin-Applications-Slack-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Slack-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Slack-Restapi/pkg.json b/packaging/centreon-plugin-Applications-Slack-Restapi/pkg.json new file mode 100644 index 000000000..45a43d0ca --- /dev/null +++ b/packaging/centreon-plugin-Applications-Slack-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Slack-Restapi", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_slack_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/slack/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Slack-Restapi/rpm.json b/packaging/centreon-plugin-Applications-Slack-Restapi/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Slack-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Smartermail-Api/deb.json b/packaging/centreon-plugin-Applications-Smartermail-Api/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Smartermail-Api/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Smartermail-Api/pkg.json b/packaging/centreon-plugin-Applications-Smartermail-Api/pkg.json new file mode 100644 index 000000000..6c0a43eb1 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Smartermail-Api/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Smartermail-Api", + "pkg_summary": "Centreon Plugin to monitor Smartermail throught Rest API", + "plugin_name": "centreon_smartermail_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/smartermail/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Smartermail-Api/rpm.json b/packaging/centreon-plugin-Applications-Smartermail-Api/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Smartermail-Api/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Solr-Jmx/deb.json b/packaging/centreon-plugin-Applications-Solr-Jmx/deb.json new file mode 100644 index 000000000..41a67333c --- /dev/null +++ b/packaging/centreon-plugin-Applications-Solr-Jmx/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libjmx4perl-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Solr-Jmx/pkg.json b/packaging/centreon-plugin-Applications-Solr-Jmx/pkg.json new file mode 100644 index 000000000..2c3f211f2 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Solr-Jmx/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Applications-Solr-Jmx", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_solr_jmx.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/common/protocols/jmx/", + "apps/java/solr/jmx/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Solr-Jmx/rpm.json b/packaging/centreon-plugin-Applications-Solr-Jmx/rpm.json new file mode 100644 index 000000000..5d2a81f7a --- /dev/null +++ b/packaging/centreon-plugin-Applications-Solr-Jmx/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(JMX::Jmx4Perl)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Squid-Snmp/deb.json b/packaging/centreon-plugin-Applications-Squid-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Applications-Squid-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Squid-Snmp/pkg.json b/packaging/centreon-plugin-Applications-Squid-Snmp/pkg.json new file mode 100644 index 000000000..c9dfb6fc7 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Squid-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Applications-Squid-Snmp", + "pkg_summary": "Centreon Plugin to monitor Squid Application using SNMP", + "plugin_name": "centreon_squid_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "apps/squid/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Squid-Snmp/rpm.json b/packaging/centreon-plugin-Applications-Squid-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Applications-Squid-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Thales-Mistral-Vs9-Restapi/deb.json b/packaging/centreon-plugin-Applications-Thales-Mistral-Vs9-Restapi/deb.json new file mode 100644 index 000000000..e9794bcd7 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Thales-Mistral-Vs9-Restapi/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libdatetime-perl", + "libnet-ntp-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Thales-Mistral-Vs9-Restapi/pkg.json b/packaging/centreon-plugin-Applications-Thales-Mistral-Vs9-Restapi/pkg.json new file mode 100644 index 000000000..0674be2c0 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Thales-Mistral-Vs9-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Thales-Mistral-Vs9-Restapi", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_thales_mistral_vs9_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/thales/mistral/vs9/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Thales-Mistral-Vs9-Restapi/rpm.json b/packaging/centreon-plugin-Applications-Thales-Mistral-Vs9-Restapi/rpm.json new file mode 100644 index 000000000..1eb6fc62a --- /dev/null +++ b/packaging/centreon-plugin-Applications-Thales-Mistral-Vs9-Restapi/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Net::NTP)" + ] +} diff --git a/packaging/centreon-plugin-Applications-TrendMicro-Iwsva/deb.json b/packaging/centreon-plugin-Applications-TrendMicro-Iwsva/deb.json new file mode 100644 index 000000000..d94e32d22 --- /dev/null +++ b/packaging/centreon-plugin-Applications-TrendMicro-Iwsva/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libsnmp-perl", + "libdatetime-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-TrendMicro-Iwsva/pkg.json b/packaging/centreon-plugin-Applications-TrendMicro-Iwsva/pkg.json new file mode 100644 index 000000000..6d4f3c736 --- /dev/null +++ b/packaging/centreon-plugin-Applications-TrendMicro-Iwsva/pkg.json @@ -0,0 +1,20 @@ +{ + "pkg_name": "centreon-plugin-Applications-TrendMicro-Iwsva", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_trendmicro_iwsva.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/cpu.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/loadaverage.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/liststorages.pm", + "snmp_standard/mode/memory.pm", + "snmp_standard/mode/storage.pm", + "snmp_standard/mode/swap.pm", + "snmp_standard/mode/tcpcon.pm", + "os/linux/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Applications-TrendMicro-Iwsva/rpm.json b/packaging/centreon-plugin-Applications-TrendMicro-Iwsva/rpm.json new file mode 100644 index 000000000..d4922ea47 --- /dev/null +++ b/packaging/centreon-plugin-Applications-TrendMicro-Iwsva/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(SNMP)", + "perl(DateTime)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Vernemq-Restapi/deb.json b/packaging/centreon-plugin-Applications-Vernemq-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Vernemq-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Vernemq-Restapi/pkg.json b/packaging/centreon-plugin-Applications-Vernemq-Restapi/pkg.json new file mode 100644 index 000000000..ae9000f6a --- /dev/null +++ b/packaging/centreon-plugin-Applications-Vernemq-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Vernemq-Restapi", + "pkg_summary": "Centreon Plugin to monitor VerneMQ using RestAPI", + "plugin_name": "centreon_vernemq_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/mq/vernemq/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Vernemq-Restapi/rpm.json b/packaging/centreon-plugin-Applications-Vernemq-Restapi/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Vernemq-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Video-Openheadend-Snmp/deb.json b/packaging/centreon-plugin-Applications-Video-Openheadend-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Applications-Video-Openheadend-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Video-Openheadend-Snmp/pkg.json b/packaging/centreon-plugin-Applications-Video-Openheadend-Snmp/pkg.json new file mode 100644 index 000000000..519d8c788 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Video-Openheadend-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Applications-Video-Openheadend-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_openheadend_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "apps/video/openheadend/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Video-Openheadend-Snmp/rpm.json b/packaging/centreon-plugin-Applications-Video-Openheadend-Snmp/rpm.json new file mode 100644 index 000000000..c9ec37470 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Video-Openheadend-Snmp/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(SNMP)" + ], + "custom_pkg_data": "Obsoletes: centreon-plugin-App-Video-Openheadend-Snmp" +} diff --git a/packaging/centreon-plugin-Applications-Video-Zixi-Restapi/deb.json b/packaging/centreon-plugin-Applications-Video-Zixi-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Video-Zixi-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Video-Zixi-Restapi/pkg.json b/packaging/centreon-plugin-Applications-Video-Zixi-Restapi/pkg.json new file mode 100644 index 000000000..3ae456f7d --- /dev/null +++ b/packaging/centreon-plugin-Applications-Video-Zixi-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Video-Zixi-Restapi", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_zixi_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/video/zixi/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Video-Zixi-Restapi/rpm.json b/packaging/centreon-plugin-Applications-Video-Zixi-Restapi/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Video-Zixi-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Vmware-Vcsa-Restapi/deb.json b/packaging/centreon-plugin-Applications-Vmware-Vcsa-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Vmware-Vcsa-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Vmware-Vcsa-Restapi/pkg.json b/packaging/centreon-plugin-Applications-Vmware-Vcsa-Restapi/pkg.json new file mode 100644 index 000000000..ca033656c --- /dev/null +++ b/packaging/centreon-plugin-Applications-Vmware-Vcsa-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Vmware-Vcsa-Restapi", + "pkg_summary": "Centreon Plugin VMWare vcsa rest api", + "plugin_name": "centreon_vmware_vcsa_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/vmware/vcsa/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Vmware-Vcsa-Restapi/rpm.json b/packaging/centreon-plugin-Applications-Vmware-Vcsa-Restapi/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Vmware-Vcsa-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Vmware-Vcsa-Snmp/deb.json b/packaging/centreon-plugin-Applications-Vmware-Vcsa-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Applications-Vmware-Vcsa-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Vmware-Vcsa-Snmp/pkg.json b/packaging/centreon-plugin-Applications-Vmware-Vcsa-Snmp/pkg.json new file mode 100644 index 000000000..5c0c6eccb --- /dev/null +++ b/packaging/centreon-plugin-Applications-Vmware-Vcsa-Snmp/pkg.json @@ -0,0 +1,17 @@ +{ + "pkg_name": "centreon-plugin-Applications-Vmware-Vcsa-Snmp", + "pkg_summary": "Centreon Plugin VMWare vcsa snmp", + "plugin_name": "centreon_vmware_vcsa_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/cpu.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/liststorages.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/storage.pm", + "snmp_standard/mode/uptime.pm", + "apps/vmware/vcsa/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Vmware-Vcsa-Snmp/rpm.json b/packaging/centreon-plugin-Applications-Vmware-Vcsa-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Applications-Vmware-Vcsa-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Voip-3cx-Restapi/deb.json b/packaging/centreon-plugin-Applications-Voip-3cx-Restapi/deb.json new file mode 100644 index 000000000..540c269f3 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Voip-3cx-Restapi/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libjson-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Voip-3cx-Restapi/pkg.json b/packaging/centreon-plugin-Applications-Voip-3cx-Restapi/pkg.json new file mode 100644 index 000000000..a50b83833 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Voip-3cx-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Voip-3cx-Restapi", + "pkg_summary": "Centreon Plugin to 3cx RestAPI", + "plugin_name": "centreon_3cx_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/voip/3cx/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Voip-3cx-Restapi/rpm.json b/packaging/centreon-plugin-Applications-Voip-3cx-Restapi/rpm.json new file mode 100644 index 000000000..186961460 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Voip-3cx-Restapi/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(JSON)" + ] +} diff --git a/packaging/centreon-plugin-Applications-Voip-Asterisk-Ami/deb.json b/packaging/centreon-plugin-Applications-Voip-Asterisk-Ami/deb.json new file mode 100644 index 000000000..5bad9b9c4 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Voip-Asterisk-Ami/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libio-socket-ip-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Voip-Asterisk-Ami/pkg.json b/packaging/centreon-plugin-Applications-Voip-Asterisk-Ami/pkg.json new file mode 100644 index 000000000..4039e8eb9 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Voip-Asterisk-Ami/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Voip-Asterisk-Ami", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_asterisk_ami.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/voip/asterisk/ami/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Voip-Asterisk-Ami/rpm.json b/packaging/centreon-plugin-Applications-Voip-Asterisk-Ami/rpm.json new file mode 100644 index 000000000..ed03451a1 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Voip-Asterisk-Ami/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(IO::Socket::INET)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Voip-Asterisk-Snmp/deb.json b/packaging/centreon-plugin-Applications-Voip-Asterisk-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Applications-Voip-Asterisk-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Voip-Asterisk-Snmp/pkg.json b/packaging/centreon-plugin-Applications-Voip-Asterisk-Snmp/pkg.json new file mode 100644 index 000000000..2098fee22 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Voip-Asterisk-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Applications-Voip-Asterisk-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_asterisk_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "apps/voip/asterisk/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Voip-Asterisk-Snmp/rpm.json b/packaging/centreon-plugin-Applications-Voip-Asterisk-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Applications-Voip-Asterisk-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Voip-Asterisk/deb.json b/packaging/centreon-plugin-Applications-Voip-Asterisk/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Applications-Voip-Asterisk/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Voip-Asterisk/pkg.json b/packaging/centreon-plugin-Applications-Voip-Asterisk/pkg.json new file mode 100644 index 000000000..1bb390913 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Voip-Asterisk/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Applications-Voip-Asterisk", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_asterisk.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "apps/voip/asterisk/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Voip-Asterisk/rpm.json b/packaging/centreon-plugin-Applications-Voip-Asterisk/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Applications-Voip-Asterisk/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Vtom-Restapi/deb.json b/packaging/centreon-plugin-Applications-Vtom-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Vtom-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Vtom-Restapi/pkg.json b/packaging/centreon-plugin-Applications-Vtom-Restapi/pkg.json new file mode 100644 index 000000000..b370eccd6 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Vtom-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Vtom-Restapi", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_vtom_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/vtom/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Vtom-Restapi/rpm.json b/packaging/centreon-plugin-Applications-Vtom-Restapi/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Vtom-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Wallix-Bastion-Snmp/deb.json b/packaging/centreon-plugin-Applications-Wallix-Bastion-Snmp/deb.json new file mode 100644 index 000000000..fc5f9d099 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Wallix-Bastion-Snmp/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libsnmp-perl", + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Wallix-Bastion-Snmp/pkg.json b/packaging/centreon-plugin-Applications-Wallix-Bastion-Snmp/pkg.json new file mode 100644 index 000000000..1a1a7fdb6 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Wallix-Bastion-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Applications-Wallix-Bastion-Snmp", + "pkg_summary": "Centreon Plugin to monitor WALLIX Bastion using SNMP", + "plugin_name": "centreon_wallix_bastion_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "apps/wallix/bastion/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Wallix-Bastion-Snmp/rpm.json b/packaging/centreon-plugin-Applications-Wallix-Bastion-Snmp/rpm.json new file mode 100644 index 000000000..26e66e331 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Wallix-Bastion-Snmp/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(SNMP)", + "perl(DateTime)" + ] +} diff --git a/packaging/centreon-plugin-Applications-Wazuh-Restapi/deb.json b/packaging/centreon-plugin-Applications-Wazuh-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Wazuh-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Wazuh-Restapi/pkg.json b/packaging/centreon-plugin-Applications-Wazuh-Restapi/pkg.json new file mode 100644 index 000000000..be539d4e5 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Wazuh-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Wazuh-Restapi", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_wazuh_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/wazuh/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Wazuh-Restapi/rpm.json b/packaging/centreon-plugin-Applications-Wazuh-Restapi/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Wazuh-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Weblogic-Jmx/deb.json b/packaging/centreon-plugin-Applications-Weblogic-Jmx/deb.json new file mode 100644 index 000000000..41a67333c --- /dev/null +++ b/packaging/centreon-plugin-Applications-Weblogic-Jmx/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libjmx4perl-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Weblogic-Jmx/pkg.json b/packaging/centreon-plugin-Applications-Weblogic-Jmx/pkg.json new file mode 100644 index 000000000..2664a599f --- /dev/null +++ b/packaging/centreon-plugin-Applications-Weblogic-Jmx/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Applications-Weblogic-Jmx", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_weblogic_jmx.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/common/protocols/jmx/", + "centreon/common/jvm", + "apps/java/weblogic/jmx/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Weblogic-Jmx/rpm.json b/packaging/centreon-plugin-Applications-Weblogic-Jmx/rpm.json new file mode 100644 index 000000000..5d2a81f7a --- /dev/null +++ b/packaging/centreon-plugin-Applications-Weblogic-Jmx/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(JMX::Jmx4Perl)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Webservers-Apache-Serverstatus/deb.json b/packaging/centreon-plugin-Applications-Webservers-Apache-Serverstatus/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Webservers-Apache-Serverstatus/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Webservers-Apache-Serverstatus/pkg.json b/packaging/centreon-plugin-Applications-Webservers-Apache-Serverstatus/pkg.json new file mode 100644 index 000000000..34d1cbef5 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Webservers-Apache-Serverstatus/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Webservers-Apache-Serverstatus", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_apache_serverstatus.pl", + "files": [ + "centreon/plugins/script_simple.pm", + "apps/apache/serverstatus/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Webservers-Apache-Serverstatus/rpm.json b/packaging/centreon-plugin-Applications-Webservers-Apache-Serverstatus/rpm.json new file mode 100644 index 000000000..e40e8ebeb --- /dev/null +++ b/packaging/centreon-plugin-Applications-Webservers-Apache-Serverstatus/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(Time::HiRes)" + ] +} diff --git a/packaging/centreon-plugin-Applications-Webservers-Iis-Restapi/deb.json b/packaging/centreon-plugin-Applications-Webservers-Iis-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Webservers-Iis-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Webservers-Iis-Restapi/pkg.json b/packaging/centreon-plugin-Applications-Webservers-Iis-Restapi/pkg.json new file mode 100644 index 000000000..c08810996 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Webservers-Iis-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Webservers-Iis-Restapi", + "pkg_summary": "Centreon Plugin to monitor Windows IIS server using IIS API", + "plugin_name": "centreon_iis_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/microsoft/iis/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Webservers-Iis-Restapi/rpm.json b/packaging/centreon-plugin-Applications-Webservers-Iis-Restapi/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Webservers-Iis-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Webservers-Nginx-Serverstatus/deb.json b/packaging/centreon-plugin-Applications-Webservers-Nginx-Serverstatus/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Webservers-Nginx-Serverstatus/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Webservers-Nginx-Serverstatus/pkg.json b/packaging/centreon-plugin-Applications-Webservers-Nginx-Serverstatus/pkg.json new file mode 100644 index 000000000..8986122da --- /dev/null +++ b/packaging/centreon-plugin-Applications-Webservers-Nginx-Serverstatus/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Webservers-Nginx-Serverstatus", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_nginx_serverstatus.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/nginx/serverstatus/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Webservers-Nginx-Serverstatus/rpm.json b/packaging/centreon-plugin-Applications-Webservers-Nginx-Serverstatus/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Webservers-Nginx-Serverstatus/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Applications-Webservers-Tomcat-Jmx/deb.json b/packaging/centreon-plugin-Applications-Webservers-Tomcat-Jmx/deb.json new file mode 100644 index 000000000..41a67333c --- /dev/null +++ b/packaging/centreon-plugin-Applications-Webservers-Tomcat-Jmx/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libjmx4perl-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Webservers-Tomcat-Jmx/pkg.json b/packaging/centreon-plugin-Applications-Webservers-Tomcat-Jmx/pkg.json new file mode 100644 index 000000000..57f3d7a8b --- /dev/null +++ b/packaging/centreon-plugin-Applications-Webservers-Tomcat-Jmx/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Applications-Webservers-Tomcat-Jmx", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_tomcat_jmx.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/common/jvm/", + "centreon/common/protocols/jmx/", + "apps/tomcat/jmx/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Webservers-Tomcat-Jmx/rpm.json b/packaging/centreon-plugin-Applications-Webservers-Tomcat-Jmx/rpm.json new file mode 100644 index 000000000..5d2a81f7a --- /dev/null +++ b/packaging/centreon-plugin-Applications-Webservers-Tomcat-Jmx/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(JMX::Jmx4Perl)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Webservers-Tomcat-Webmanager/deb.json b/packaging/centreon-plugin-Applications-Webservers-Tomcat-Webmanager/deb.json new file mode 100644 index 000000000..551459862 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Webservers-Tomcat-Webmanager/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libxml-xpath-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Webservers-Tomcat-Webmanager/pkg.json b/packaging/centreon-plugin-Applications-Webservers-Tomcat-Webmanager/pkg.json new file mode 100644 index 000000000..b37b65565 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Webservers-Tomcat-Webmanager/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Applications-Webservers-Tomcat-Webmanager", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_tomcat_webmanager.pl", + "files": [ + "centreon/plugins/script_simple.pm", + "apps/tomcat/web/" + ] +} diff --git a/packaging/centreon-plugin-Applications-Webservers-Tomcat-Webmanager/rpm.json b/packaging/centreon-plugin-Applications-Webservers-Tomcat-Webmanager/rpm.json new file mode 100644 index 000000000..9b1e09d0a --- /dev/null +++ b/packaging/centreon-plugin-Applications-Webservers-Tomcat-Webmanager/rpm.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "perl(Time::HiRes)", + "perl(XML::XPath)", + "perl(URI::Escape)" + ] +} diff --git a/packaging/centreon-plugin-Applications-Zookeeper-Jmx/deb.json b/packaging/centreon-plugin-Applications-Zookeeper-Jmx/deb.json new file mode 100644 index 000000000..41a67333c --- /dev/null +++ b/packaging/centreon-plugin-Applications-Zookeeper-Jmx/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libjmx4perl-perl" + ] +} diff --git a/packaging/centreon-plugin-Applications-Zookeeper-Jmx/pkg.json b/packaging/centreon-plugin-Applications-Zookeeper-Jmx/pkg.json new file mode 100644 index 000000000..61e6dc4e9 --- /dev/null +++ b/packaging/centreon-plugin-Applications-Zookeeper-Jmx/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Applications-Zookeeper-Jmx", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_zookeeper_jmx.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/common/protocols/jmx/", + "apps/java/zookeeper/jmx/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Applications-Zookeeper-Jmx/rpm.json b/packaging/centreon-plugin-Applications-Zookeeper-Jmx/rpm.json new file mode 100644 index 000000000..5d2a81f7a --- /dev/null +++ b/packaging/centreon-plugin-Applications-Zookeeper-Jmx/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(JMX::Jmx4Perl)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Blockchain-Hyperledger-Exporter/deb.json b/packaging/centreon-plugin-Blockchain-Hyperledger-Exporter/deb.json new file mode 100644 index 000000000..b370b1eae --- /dev/null +++ b/packaging/centreon-plugin-Blockchain-Hyperledger-Exporter/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + ] +} + diff --git a/packaging/centreon-plugin-Blockchain-Hyperledger-Exporter/pkg.json b/packaging/centreon-plugin-Blockchain-Hyperledger-Exporter/pkg.json new file mode 100644 index 000000000..32734a9cd --- /dev/null +++ b/packaging/centreon-plugin-Blockchain-Hyperledger-Exporter/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Blockchain-Hyperledger-Exporter", + "pkg_summary": "Centreon Plugin to monitor Blockchain Hyperledger using Restapi", + "plugin_name": "centreon_blockchain_hyperledger_exporter_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/common/monitoring/openmetrics/custom", + "blockchain/hyperledger/exporter/" + ] +} diff --git a/packaging/centreon-plugin-Blockchain-Hyperledger-Exporter/rpm.json b/packaging/centreon-plugin-Blockchain-Hyperledger-Exporter/rpm.json new file mode 100644 index 000000000..b370b1eae --- /dev/null +++ b/packaging/centreon-plugin-Blockchain-Hyperledger-Exporter/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + ] +} + diff --git a/packaging/centreon-plugin-Blockchain-Parity-Ethpoller-Restapi/deb.json b/packaging/centreon-plugin-Blockchain-Parity-Ethpoller-Restapi/deb.json new file mode 100644 index 000000000..b370b1eae --- /dev/null +++ b/packaging/centreon-plugin-Blockchain-Parity-Ethpoller-Restapi/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + ] +} + diff --git a/packaging/centreon-plugin-Blockchain-Parity-Ethpoller-Restapi/pkg.json b/packaging/centreon-plugin-Blockchain-Parity-Ethpoller-Restapi/pkg.json new file mode 100644 index 000000000..fce596859 --- /dev/null +++ b/packaging/centreon-plugin-Blockchain-Parity-Ethpoller-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Blockchain-Parity-Ethpoller-Restapi", + "pkg_summary": "Centreon Plugin to monitor Blockchain Parity Ethpoller using Restapi", + "plugin_name": "centreon_blockchain_parity_ethpoller_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "blockchain/parity/ethpoller/" + ] +} diff --git a/packaging/centreon-plugin-Blockchain-Parity-Ethpoller-Restapi/rpm.json b/packaging/centreon-plugin-Blockchain-Parity-Ethpoller-Restapi/rpm.json new file mode 100644 index 000000000..b370b1eae --- /dev/null +++ b/packaging/centreon-plugin-Blockchain-Parity-Ethpoller-Restapi/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + ] +} + diff --git a/packaging/centreon-plugin-Blockchain-Parity-Restapi/deb.json b/packaging/centreon-plugin-Blockchain-Parity-Restapi/deb.json new file mode 100644 index 000000000..b370b1eae --- /dev/null +++ b/packaging/centreon-plugin-Blockchain-Parity-Restapi/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + ] +} + diff --git a/packaging/centreon-plugin-Blockchain-Parity-Restapi/pkg.json b/packaging/centreon-plugin-Blockchain-Parity-Restapi/pkg.json new file mode 100644 index 000000000..9edd42f1c --- /dev/null +++ b/packaging/centreon-plugin-Blockchain-Parity-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Blockchain-Parity-Restapi", + "pkg_summary": "Centreon Plugin to monitor Blockchain Parity using Restapi", + "plugin_name": "centreon_blockchain_parity_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "blockchain/parity/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Blockchain-Parity-Restapi/rpm.json b/packaging/centreon-plugin-Blockchain-Parity-Restapi/rpm.json new file mode 100644 index 000000000..b370b1eae --- /dev/null +++ b/packaging/centreon-plugin-Blockchain-Parity-Restapi/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + ] +} + diff --git a/packaging/centreon-plugin-Cloud-Aws-Apigateway-Api/deb.json b/packaging/centreon-plugin-Cloud-Aws-Apigateway-Api/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Apigateway-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Apigateway-Api/pkg.json b/packaging/centreon-plugin-Cloud-Aws-Apigateway-Api/pkg.json new file mode 100644 index 000000000..f964908cb --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Apigateway-Api/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Aws-Apigateway-Api", + "pkg_summary": "Centreon Plugin to monitor Amazon AWS API Gateway service using Cloudwatch API", + "plugin_name": "centreon_aws_apigateway_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/aws/custom/", + "cloud/aws/apigateway/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Apigateway-Api/rpm.json b/packaging/centreon-plugin-Cloud-Aws-Apigateway-Api/rpm.json new file mode 100644 index 000000000..e9dff7552 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Apigateway-Api/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(DateTime)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Backup-Api/deb.json b/packaging/centreon-plugin-Cloud-Aws-Backup-Api/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Backup-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Backup-Api/pkg.json b/packaging/centreon-plugin-Cloud-Aws-Backup-Api/pkg.json new file mode 100644 index 000000000..f76457ca7 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Backup-Api/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Aws-Backup-Api", + "pkg_summary": "Centreon Plugin to monitor Amazon AWS Backup Vault service using Cloudwatch API", + "plugin_name": "centreon_aws_backup_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/aws/custom/", + "cloud/aws/backup/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Backup-Api/rpm.json b/packaging/centreon-plugin-Cloud-Aws-Backup-Api/rpm.json new file mode 100644 index 000000000..e9dff7552 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Backup-Api/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(DateTime)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Billing-Api/deb.json b/packaging/centreon-plugin-Cloud-Aws-Billing-Api/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Billing-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Billing-Api/pkg.json b/packaging/centreon-plugin-Cloud-Aws-Billing-Api/pkg.json new file mode 100644 index 000000000..321d3b72f --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Billing-Api/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Aws-Billing-Api", + "pkg_summary": "Centreon Plugin to monitor Amazon AWS Billing service using Cloudwatch API", + "plugin_name": "centreon_aws_billing_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/aws/custom/", + "cloud/aws/billing/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Billing-Api/rpm.json b/packaging/centreon-plugin-Cloud-Aws-Billing-Api/rpm.json new file mode 100644 index 000000000..e9dff7552 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Billing-Api/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(DateTime)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Cloudfront-Api/deb.json b/packaging/centreon-plugin-Cloud-Aws-Cloudfront-Api/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Cloudfront-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Cloudfront-Api/pkg.json b/packaging/centreon-plugin-Cloud-Aws-Cloudfront-Api/pkg.json new file mode 100644 index 000000000..b52595a91 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Cloudfront-Api/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Aws-Cloudfront-Api", + "pkg_summary": "Centreon Plugin to monitor Amazon AWS CloudFront service using Cloudwatch API", + "plugin_name": "centreon_aws_cloudfront_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/aws/custom/", + "cloud/aws/cloudfront/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Cloudfront-Api/rpm.json b/packaging/centreon-plugin-Cloud-Aws-Cloudfront-Api/rpm.json new file mode 100644 index 000000000..e9dff7552 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Cloudfront-Api/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(DateTime)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Cloudwatch-Api/deb.json b/packaging/centreon-plugin-Cloud-Aws-Cloudwatch-Api/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Cloudwatch-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Cloudwatch-Api/pkg.json b/packaging/centreon-plugin-Cloud-Aws-Cloudwatch-Api/pkg.json new file mode 100644 index 000000000..5f6f062b0 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Cloudwatch-Api/pkg.json @@ -0,0 +1,27 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Aws-Cloudwatch-Api", + "pkg_summary": "Centreon Plugin to monitor Amazon AWS using Cloudwatch API", + "plugin_name": "centreon_aws_cloudwatch_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/aws/custom/", + "cloud/aws/cloudwatch/", + "cloud/aws/apigateway/mode/discovery.pm", + "cloud/aws/backup/mode/discovery.pm", + "cloud/aws/ebs/mode/discovery.pm", + "cloud/aws/ec2/mode/discovery.pm", + "cloud/aws/ec2/mode/discoveryspotfleetrequests.pm", + "cloud/aws/efs/mode/discovery.pm", + "cloud/aws/elb/application/mode/discovery.pm", + "cloud/aws/elb/classic/mode/discovery.pm", + "cloud/aws/elb/network/mode/discovery.pm", + "cloud/aws/fsx/mode/discovery.pm", + "cloud/aws/kinesis/mode/discovery.pm", + "cloud/aws/lambda/mode/discovery.pm", + "cloud/aws/rds/mode/discovery.pm", + "cloud/aws/s3/mode/discovery.pm", + "cloud/aws/sns/mode/discovery.pm", + "cloud/aws/sqs/mode/discovery.pm", + "cloud/aws/vpn/mode/discovery.pm" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Cloudwatch-Api/rpm.json b/packaging/centreon-plugin-Cloud-Aws-Cloudwatch-Api/rpm.json new file mode 100644 index 000000000..8567b0aed --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Cloudwatch-Api/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(DateTime)" + ], + "custom_pkg_data": "Obsoletes: centreon-plugin-Cloud-Aws-Api" +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Cloudwatchlogs-Api/deb.json b/packaging/centreon-plugin-Cloud-Aws-Cloudwatchlogs-Api/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Cloudwatchlogs-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Cloudwatchlogs-Api/pkg.json b/packaging/centreon-plugin-Cloud-Aws-Cloudwatchlogs-Api/pkg.json new file mode 100644 index 000000000..a6490e0ed --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Cloudwatchlogs-Api/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Aws-Cloudwatchlogs-Api", + "pkg_summary": "Centreon Plugin to monitor Amazon AWS CloudWatch Logs", + "plugin_name": "centreon_aws_cloudwatchlogs_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/aws/custom/", + "cloud/aws/cloudwatchlogs/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Cloudwatchlogs-Api/rpm.json b/packaging/centreon-plugin-Cloud-Aws-Cloudwatchlogs-Api/rpm.json new file mode 100644 index 000000000..8567b0aed --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Cloudwatchlogs-Api/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(DateTime)" + ], + "custom_pkg_data": "Obsoletes: centreon-plugin-Cloud-Aws-Api" +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Ebs-Api/deb.json b/packaging/centreon-plugin-Cloud-Aws-Ebs-Api/deb.json new file mode 100644 index 000000000..bc17ef2ad --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Ebs-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Ebs-Api/pkg.json b/packaging/centreon-plugin-Cloud-Aws-Ebs-Api/pkg.json new file mode 100644 index 000000000..27ad14da2 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Ebs-Api/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Aws-Ebs-Api", + "pkg_summary": "Centreon Plugin to monitor Amazon EBS (Elastic Block Store) volumes using Cloudwatch API", + "plugin_name": "centreon_aws_ebs_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/aws/custom/", + "cloud/aws/ebs/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Cloud-Aws-Ebs-Api/rpm.json b/packaging/centreon-plugin-Cloud-Aws-Ebs-Api/rpm.json new file mode 100644 index 000000000..bc30a2c0d --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Ebs-Api/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(DateTime)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Ec2-Api/deb.json b/packaging/centreon-plugin-Cloud-Aws-Ec2-Api/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Ec2-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Ec2-Api/pkg.json b/packaging/centreon-plugin-Cloud-Aws-Ec2-Api/pkg.json new file mode 100644 index 000000000..cc80b3212 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Ec2-Api/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Aws-Ec2-Api", + "pkg_summary": "Centreon Plugin to monitor Amazon AWS EC2 (Elastic Compute Cloud) service using Cloudwatch API", + "plugin_name": "centreon_aws_ec2_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/aws/custom/", + "cloud/aws/ec2/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Ec2-Api/rpm.json b/packaging/centreon-plugin-Cloud-Aws-Ec2-Api/rpm.json new file mode 100644 index 000000000..e9dff7552 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Ec2-Api/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(DateTime)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Efs-Api/deb.json b/packaging/centreon-plugin-Cloud-Aws-Efs-Api/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Efs-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Efs-Api/pkg.json b/packaging/centreon-plugin-Cloud-Aws-Efs-Api/pkg.json new file mode 100644 index 000000000..14100e2f5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Efs-Api/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Aws-Efs-Api", + "pkg_summary": "Centreon Plugin to monitor Amazon AWS EFS (Elastic File System) service using Cloudwatch API", + "plugin_name": "centreon_aws_efs_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/aws/custom/", + "cloud/aws/efs/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Efs-Api/rpm.json b/packaging/centreon-plugin-Cloud-Aws-Efs-Api/rpm.json new file mode 100644 index 000000000..e9dff7552 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Efs-Api/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(DateTime)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Elasticache-Api/deb.json b/packaging/centreon-plugin-Cloud-Aws-Elasticache-Api/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Elasticache-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Elasticache-Api/pkg.json b/packaging/centreon-plugin-Cloud-Aws-Elasticache-Api/pkg.json new file mode 100644 index 000000000..e200a2be1 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Elasticache-Api/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Aws-Elasticache-Api", + "pkg_summary": "Centreon Plugin to monitor Amazon AWS Elasticache service using Cloudwatch API", + "plugin_name": "centreon_aws_elasticache_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/aws/custom/", + "cloud/aws/elasticache/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Elasticache-Api/rpm.json b/packaging/centreon-plugin-Cloud-Aws-Elasticache-Api/rpm.json new file mode 100644 index 000000000..e9dff7552 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Elasticache-Api/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(DateTime)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Elb-Api/deb.json b/packaging/centreon-plugin-Cloud-Aws-Elb-Api/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Elb-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Elb-Api/pkg.json b/packaging/centreon-plugin-Cloud-Aws-Elb-Api/pkg.json new file mode 100644 index 000000000..d8a4f87b6 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Elb-Api/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Aws-Elb-Api", + "pkg_summary": "Centreon Plugin to monitor Amazon AWS Classic ELB (Elastic Load Balancing) service using Cloudwatch API", + "plugin_name": "centreon_aws_elb_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/aws/custom/", + "cloud/aws/elb/classic/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Elb-Api/rpm.json b/packaging/centreon-plugin-Cloud-Aws-Elb-Api/rpm.json new file mode 100644 index 000000000..e9dff7552 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Elb-Api/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(DateTime)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Elb-Application-Api/deb.json b/packaging/centreon-plugin-Cloud-Aws-Elb-Application-Api/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Elb-Application-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Elb-Application-Api/pkg.json b/packaging/centreon-plugin-Cloud-Aws-Elb-Application-Api/pkg.json new file mode 100644 index 000000000..5c809be80 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Elb-Application-Api/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Aws-Elb-Application-Api", + "pkg_summary": "Centreon Plugin to monitor Amazon AWS Application ELB (Elastic Load Balancing) service using Cloudwatch API", + "plugin_name": "centreon_aws_elb_application_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/aws/custom/", + "cloud/aws/elb/application/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Elb-Application-Api/rpm.json b/packaging/centreon-plugin-Cloud-Aws-Elb-Application-Api/rpm.json new file mode 100644 index 000000000..e9dff7552 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Elb-Application-Api/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(DateTime)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Elb-Network-Api/deb.json b/packaging/centreon-plugin-Cloud-Aws-Elb-Network-Api/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Elb-Network-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Elb-Network-Api/pkg.json b/packaging/centreon-plugin-Cloud-Aws-Elb-Network-Api/pkg.json new file mode 100644 index 000000000..1212b44b3 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Elb-Network-Api/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Aws-Elb-Network-Api", + "pkg_summary": "Centreon Plugin to monitor Amazon AWS Network ELB (Elastic Load Balancing) service using Cloudwatch API", + "plugin_name": "centreon_aws_elb_network_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/aws/custom/", + "cloud/aws/elb/network/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Elb-Network-Api/rpm.json b/packaging/centreon-plugin-Cloud-Aws-Elb-Network-Api/rpm.json new file mode 100644 index 000000000..e9dff7552 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Elb-Network-Api/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(DateTime)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Fsx-Api/deb.json b/packaging/centreon-plugin-Cloud-Aws-Fsx-Api/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Fsx-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Fsx-Api/pkg.json b/packaging/centreon-plugin-Cloud-Aws-Fsx-Api/pkg.json new file mode 100644 index 000000000..f098781d3 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Fsx-Api/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Aws-Fsx-Api", + "pkg_summary": "Centreon Plugin to monitor Amazon AWS FSx Filesystems using Cloudwatch API", + "plugin_name": "centreon_aws_fsx_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/aws/custom/", + "cloud/aws/fsx/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Fsx-Api/rpm.json b/packaging/centreon-plugin-Cloud-Aws-Fsx-Api/rpm.json new file mode 100644 index 000000000..e9dff7552 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Fsx-Api/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(DateTime)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Health-Api/deb.json b/packaging/centreon-plugin-Cloud-Aws-Health-Api/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Health-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Health-Api/pkg.json b/packaging/centreon-plugin-Cloud-Aws-Health-Api/pkg.json new file mode 100644 index 000000000..52ec53e39 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Health-Api/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Aws-Health-Api", + "pkg_summary": "Centreon Plugin to monitor Amazon AWS Health", + "plugin_name": "centreon_aws_health_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/aws/custom/", + "cloud/aws/health/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Health-Api/rpm.json b/packaging/centreon-plugin-Cloud-Aws-Health-Api/rpm.json new file mode 100644 index 000000000..e9dff7552 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Health-Api/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(DateTime)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Kinesis-Api/deb.json b/packaging/centreon-plugin-Cloud-Aws-Kinesis-Api/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Kinesis-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Kinesis-Api/pkg.json b/packaging/centreon-plugin-Cloud-Aws-Kinesis-Api/pkg.json new file mode 100644 index 000000000..9ffb98c41 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Kinesis-Api/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Aws-Kinesis-Api", + "pkg_summary": "Centreon Plugin to monitor Amazon AWS Kinesis service using Cloudwatch API", + "plugin_name": "centreon_aws_kinesis_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/aws/custom/", + "cloud/aws/kinesis/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Kinesis-Api/rpm.json b/packaging/centreon-plugin-Cloud-Aws-Kinesis-Api/rpm.json new file mode 100644 index 000000000..e9dff7552 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Kinesis-Api/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(DateTime)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Lambda-Api/deb.json b/packaging/centreon-plugin-Cloud-Aws-Lambda-Api/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Lambda-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Lambda-Api/pkg.json b/packaging/centreon-plugin-Cloud-Aws-Lambda-Api/pkg.json new file mode 100644 index 000000000..cf83f41a4 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Lambda-Api/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Aws-Lambda-Api", + "pkg_summary": "Centreon Plugin to monitor Amazon AWS Lambda service using Cloudwatch API", + "plugin_name": "centreon_aws_lambda_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/aws/custom/", + "cloud/aws/lambda/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Lambda-Api/rpm.json b/packaging/centreon-plugin-Cloud-Aws-Lambda-Api/rpm.json new file mode 100644 index 000000000..e9dff7552 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Lambda-Api/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(DateTime)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Rds-Api/deb.json b/packaging/centreon-plugin-Cloud-Aws-Rds-Api/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Rds-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Rds-Api/pkg.json b/packaging/centreon-plugin-Cloud-Aws-Rds-Api/pkg.json new file mode 100644 index 000000000..255994e9d --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Rds-Api/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Aws-Rds-Api", + "pkg_summary": "Centreon Plugin to monitor Amazon AWS RDS (Relational Database Service) service using Cloudwatch API", + "plugin_name": "centreon_aws_rds_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/aws/custom/", + "cloud/aws/rds/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Rds-Api/rpm.json b/packaging/centreon-plugin-Cloud-Aws-Rds-Api/rpm.json new file mode 100644 index 000000000..e9dff7552 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Rds-Api/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(DateTime)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-S3-Api/deb.json b/packaging/centreon-plugin-Cloud-Aws-S3-Api/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-S3-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-S3-Api/pkg.json b/packaging/centreon-plugin-Cloud-Aws-S3-Api/pkg.json new file mode 100644 index 000000000..8cb48da83 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-S3-Api/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Aws-S3-Api", + "pkg_summary": "Centreon Plugin to monitor Amazon AWS S3 (Simple Storage Service) service using Cloudwatch API", + "plugin_name": "centreon_aws_s3_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/aws/custom/", + "cloud/aws/s3/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-S3-Api/rpm.json b/packaging/centreon-plugin-Cloud-Aws-S3-Api/rpm.json new file mode 100644 index 000000000..e9dff7552 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-S3-Api/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(DateTime)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Ses-Api/deb.json b/packaging/centreon-plugin-Cloud-Aws-Ses-Api/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Ses-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Ses-Api/pkg.json b/packaging/centreon-plugin-Cloud-Aws-Ses-Api/pkg.json new file mode 100644 index 000000000..9c6a33c1d --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Ses-Api/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Aws-Ses-Api", + "pkg_summary": "Centreon Plugin to monitor Amazon AWS SES (Simple Email Service) using Cloudwatch API", + "plugin_name": "centreon_aws_ses_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/aws/custom/", + "cloud/aws/ses/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Ses-Api/rpm.json b/packaging/centreon-plugin-Cloud-Aws-Ses-Api/rpm.json new file mode 100644 index 000000000..e9dff7552 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Ses-Api/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(DateTime)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Sns-Api/deb.json b/packaging/centreon-plugin-Cloud-Aws-Sns-Api/deb.json new file mode 100644 index 000000000..bc17ef2ad --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Sns-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Sns-Api/pkg.json b/packaging/centreon-plugin-Cloud-Aws-Sns-Api/pkg.json new file mode 100644 index 000000000..ab56693c8 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Sns-Api/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Aws-Sns-Api", + "pkg_summary": "Centreon Plugin to monitor Amazon SNS (Simple Notification Service) using Cloudwatch API", + "plugin_name": "centreon_aws_sns_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/aws/custom/", + "cloud/aws/sns/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Cloud-Aws-Sns-Api/rpm.json b/packaging/centreon-plugin-Cloud-Aws-Sns-Api/rpm.json new file mode 100644 index 000000000..bc30a2c0d --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Sns-Api/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(DateTime)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Sqs-Api/deb.json b/packaging/centreon-plugin-Cloud-Aws-Sqs-Api/deb.json new file mode 100644 index 000000000..bc17ef2ad --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Sqs-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Sqs-Api/pkg.json b/packaging/centreon-plugin-Cloud-Aws-Sqs-Api/pkg.json new file mode 100644 index 000000000..910afebf8 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Sqs-Api/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Aws-Sqs-Api", + "pkg_summary": "Centreon Plugin to monitor Amazon SQS (Simple Queue Service) volumes using Cloudwatch API", + "plugin_name": "centreon_aws_sqs_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/aws/custom/", + "cloud/aws/sqs/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Cloud-Aws-Sqs-Api/rpm.json b/packaging/centreon-plugin-Cloud-Aws-Sqs-Api/rpm.json new file mode 100644 index 000000000..bc30a2c0d --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Sqs-Api/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(DateTime)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Transitgateway-Api/deb.json b/packaging/centreon-plugin-Cloud-Aws-Transitgateway-Api/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Transitgateway-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Transitgateway-Api/pkg.json b/packaging/centreon-plugin-Cloud-Aws-Transitgateway-Api/pkg.json new file mode 100644 index 000000000..7f4d677a1 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Transitgateway-Api/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Aws-Transitgateway-Api", + "pkg_summary": "Centreon Plugin to monitor AWS Transit Gateways using Cloudwatch API", + "plugin_name": "centreon_aws_transitgateway_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/aws/custom/", + "cloud/aws/transitgateway/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Transitgateway-Api/rpm.json b/packaging/centreon-plugin-Cloud-Aws-Transitgateway-Api/rpm.json new file mode 100644 index 000000000..e9dff7552 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Transitgateway-Api/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(DateTime)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Vpn-Api/deb.json b/packaging/centreon-plugin-Cloud-Aws-Vpn-Api/deb.json new file mode 100644 index 000000000..bc17ef2ad --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Vpn-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Aws-Vpn-Api/pkg.json b/packaging/centreon-plugin-Cloud-Aws-Vpn-Api/pkg.json new file mode 100644 index 000000000..053131344 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Vpn-Api/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Aws-Vpn-Api", + "pkg_summary": "Centreon Plugin to monitor Amazon AWS VPN connections using Cloudwatch API", + "plugin_name": "centreon_aws_vpn_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/aws/custom/", + "cloud/aws/vpn/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Cloud-Aws-Vpn-Api/rpm.json b/packaging/centreon-plugin-Cloud-Aws-Vpn-Api/rpm.json new file mode 100644 index 000000000..bc30a2c0d --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Aws-Vpn-Api/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(DateTime)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Analytics-EventHubs-Api/deb.json b/packaging/centreon-plugin-Cloud-Azure-Analytics-EventHubs-Api/deb.json new file mode 100644 index 000000000..bc17ef2ad --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Analytics-EventHubs-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Analytics-EventHubs-Api/pkg.json b/packaging/centreon-plugin-Cloud-Azure-Analytics-EventHubs-Api/pkg.json new file mode 100644 index 000000000..f2ca29b28 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Analytics-EventHubs-Api/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Azure-Analytics-EventHubs-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Azure Analytics Event Hubs service using CLI or RestAPI", + "plugin_name": "centreon_azure_analytics_eventhubs_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/azure/custom/", + "cloud/azure/management/monitor/mode/", + "cloud/azure/analytics/eventhubs/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Analytics-EventHubs-Api/rpm.json b/packaging/centreon-plugin-Cloud-Azure-Analytics-EventHubs-Api/rpm.json new file mode 100644 index 000000000..5c6eab0d4 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Analytics-EventHubs-Api/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-ClassicStorage-StorageAccount-Api/deb.json b/packaging/centreon-plugin-Cloud-Azure-ClassicStorage-StorageAccount-Api/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-ClassicStorage-StorageAccount-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-ClassicStorage-StorageAccount-Api/pkg.json b/packaging/centreon-plugin-Cloud-Azure-ClassicStorage-StorageAccount-Api/pkg.json new file mode 100644 index 000000000..ab4d08781 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-ClassicStorage-StorageAccount-Api/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Azure-ClassicStorage-StorageAccount-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Azure Classic Storage provider/Storage Account service using CLI or RestAPI", + "plugin_name": "centreon_azure_classicstorage_storageaccount_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/azure/custom/", + "cloud/azure/common/storageaccount/", + "cloud/azure/management/monitor/mode/discovery.pm", + "cloud/azure/management/monitor/mode/health.pm", + "cloud/azure/classicstorage/storageaccount/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Cloud-Azure-ClassicStorage-StorageAccount-Api/rpm.json b/packaging/centreon-plugin-Cloud-Azure-ClassicStorage-StorageAccount-Api/rpm.json new file mode 100644 index 000000000..4db4877ce --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-ClassicStorage-StorageAccount-Api/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Compute-Aks-Api/deb.json b/packaging/centreon-plugin-Cloud-Azure-Compute-Aks-Api/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Compute-Aks-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Compute-Aks-Api/pkg.json b/packaging/centreon-plugin-Cloud-Azure-Compute-Aks-Api/pkg.json new file mode 100644 index 000000000..5fa289145 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Compute-Aks-Api/pkg.json @@ -0,0 +1,12 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Azure-Compute-Aks-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Azure Kubernetes Service using CLI or RestAPI", + "plugin_name": "centreon_azure_compute_aks_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/azure/custom/", + "cloud/azure/management/monitor/mode/discovery.pm", + "cloud/azure/management/monitor/mode/health.pm", + "cloud/azure/compute/aks/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Compute-Aks-Api/rpm.json b/packaging/centreon-plugin-Cloud-Azure-Compute-Aks-Api/rpm.json new file mode 100644 index 000000000..ee7f9d88c --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Compute-Aks-Api/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Compute-Disk-Api/deb.json b/packaging/centreon-plugin-Cloud-Azure-Compute-Disk-Api/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Compute-Disk-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Compute-Disk-Api/pkg.json b/packaging/centreon-plugin-Cloud-Azure-Compute-Disk-Api/pkg.json new file mode 100644 index 000000000..b5d1f3552 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Compute-Disk-Api/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Azure-Compute-Disk-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Azure Compute Disk service using CLI or RestAPI", + "plugin_name": "centreon_azure_compute_disk_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/azure/custom/", + "cloud/azure/management/monitor/mode/discovery.pm", + "cloud/azure/compute/disk/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Compute-Disk-Api/rpm.json b/packaging/centreon-plugin-Cloud-Azure-Compute-Disk-Api/rpm.json new file mode 100644 index 000000000..4db4877ce --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Compute-Disk-Api/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Compute-Functions-Api/deb.json b/packaging/centreon-plugin-Cloud-Azure-Compute-Functions-Api/deb.json new file mode 100644 index 000000000..1104140fb --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Compute-Functions-Api/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} + diff --git a/packaging/centreon-plugin-Cloud-Azure-Compute-Functions-Api/pkg.json b/packaging/centreon-plugin-Cloud-Azure-Compute-Functions-Api/pkg.json new file mode 100644 index 000000000..71c4610c6 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Compute-Functions-Api/pkg.json @@ -0,0 +1,14 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Azure-Compute-Functions-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Azure Functions service using CLI or RestAPI", + "plugin_name": "centreon_azure_compute_functions_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/azure/custom/", + "cloud/azure/management/monitor/mode/", + "cloud/azure/compute/functions/", + "cloud/azure/common/appservice/" + ] + +} + diff --git a/packaging/centreon-plugin-Cloud-Azure-Compute-Functions-Api/rpm.json b/packaging/centreon-plugin-Cloud-Azure-Compute-Functions-Api/rpm.json new file mode 100644 index 000000000..532736f3a --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Compute-Functions-Api/rpm.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Digest::SHA)" + ] +} + diff --git a/packaging/centreon-plugin-Cloud-Azure-Compute-VirtualMachine-Api/deb.json b/packaging/centreon-plugin-Cloud-Azure-Compute-VirtualMachine-Api/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Compute-VirtualMachine-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Compute-VirtualMachine-Api/pkg.json b/packaging/centreon-plugin-Cloud-Azure-Compute-VirtualMachine-Api/pkg.json new file mode 100644 index 000000000..ef07eb074 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Compute-VirtualMachine-Api/pkg.json @@ -0,0 +1,12 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Azure-Compute-VirtualMachine-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Azure Compute provider/Virtual Machine service using CLI or RestAPI", + "plugin_name": "centreon_azure_compute_virtualmachine_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/azure/custom/", + "cloud/azure/management/monitor/mode/discovery.pm", + "cloud/azure/management/monitor/mode/health.pm", + "cloud/azure/compute/virtualmachine/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Compute-VirtualMachine-Api/rpm.json b/packaging/centreon-plugin-Cloud-Azure-Compute-VirtualMachine-Api/rpm.json new file mode 100644 index 000000000..c0efb95f2 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Compute-VirtualMachine-Api/rpm.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Digest::SHA)" + ], + "custom_pkg_data": "Obsoletes: centreon-plugin-Cloud-Azure-Compute-Api" +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Compute-Vmscalesets-Api/deb.json b/packaging/centreon-plugin-Cloud-Azure-Compute-Vmscalesets-Api/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Compute-Vmscalesets-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Compute-Vmscalesets-Api/pkg.json b/packaging/centreon-plugin-Cloud-Azure-Compute-Vmscalesets-Api/pkg.json new file mode 100644 index 000000000..8ffb1eea4 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Compute-Vmscalesets-Api/pkg.json @@ -0,0 +1,12 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Azure-Compute-Vmscalesets-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Azure Virtual Machine Scale Sets with CLI or RestAPI", + "plugin_name": "centreon_azure_compute_vmscalesets_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/azure/custom/", + "cloud/azure/management/monitor/mode/discovery.pm", + "cloud/azure/management/monitor/mode/health.pm", + "cloud/azure/compute/vmscalesets/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Compute-Vmscalesets-Api/rpm.json b/packaging/centreon-plugin-Cloud-Azure-Compute-Vmscalesets-Api/rpm.json new file mode 100644 index 000000000..ee7f9d88c --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Compute-Vmscalesets-Api/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-DataFactory-Factory-Api/deb.json b/packaging/centreon-plugin-Cloud-Azure-DataFactory-Factory-Api/deb.json new file mode 100644 index 000000000..98b4ccf22 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-DataFactory-Factory-Api/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libdatetime-perl", + "libdigest-sha-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-DataFactory-Factory-Api/pkg.json b/packaging/centreon-plugin-Cloud-Azure-DataFactory-Factory-Api/pkg.json new file mode 100644 index 000000000..70522df8e --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-DataFactory-Factory-Api/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Azure-DataFactory-Factories-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Azure Data Factory using RestAPI", + "plugin_name": "centreon_azure_datafactory_factories_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/azure/custom/", + "cloud/azure/management/monitor/mode/discovery.pm", + "cloud/azure/datafactory/factories/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-DataFactory-Factory-Api/rpm.json b/packaging/centreon-plugin-Cloud-Azure-DataFactory-Factory-Api/rpm.json new file mode 100644 index 000000000..4db4877ce --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-DataFactory-Factory-Api/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Database-CosmosDb-Api/deb.json b/packaging/centreon-plugin-Cloud-Azure-Database-CosmosDb-Api/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Database-CosmosDb-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Database-CosmosDb-Api/pkg.json b/packaging/centreon-plugin-Cloud-Azure-Database-CosmosDb-Api/pkg.json new file mode 100644 index 000000000..87086d446 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Database-CosmosDb-Api/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Azure-Database-CosmosDb-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Azure Database Cosmos DB Account service using CLI or RestAPI", + "plugin_name": "centreon_azure_database_cosmosdb_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/azure/custom/", + "cloud/azure/management/monitor/mode/", + "cloud/azure/database/cosmosdb/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Database-CosmosDb-Api/rpm.json b/packaging/centreon-plugin-Cloud-Azure-Database-CosmosDb-Api/rpm.json new file mode 100644 index 000000000..4db4877ce --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Database-CosmosDb-Api/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Database-Elasticpool-Api/deb.json b/packaging/centreon-plugin-Cloud-Azure-Database-Elasticpool-Api/deb.json new file mode 100644 index 000000000..bc17ef2ad --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Database-Elasticpool-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Database-Elasticpool-Api/pkg.json b/packaging/centreon-plugin-Cloud-Azure-Database-Elasticpool-Api/pkg.json new file mode 100644 index 000000000..5a68b219a --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Database-Elasticpool-Api/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Azure-Database-Elasticpool-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Azure Databases Elastic Pool service using CLI or RestAPI", + "plugin_name": "centreon_azure_database_elasticpool_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/azure/custom/", + "cloud/azure/management/monitor/mode/discovery.pm", + "cloud/azure/database/elasticpool/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Database-Elasticpool-Api/rpm.json b/packaging/centreon-plugin-Cloud-Azure-Database-Elasticpool-Api/rpm.json new file mode 100644 index 000000000..5c6eab0d4 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Database-Elasticpool-Api/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Database-Mariadb-Api/deb.json b/packaging/centreon-plugin-Cloud-Azure-Database-Mariadb-Api/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Database-Mariadb-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Database-Mariadb-Api/pkg.json b/packaging/centreon-plugin-Cloud-Azure-Database-Mariadb-Api/pkg.json new file mode 100644 index 000000000..3777a8e19 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Database-Mariadb-Api/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Azure-Database-MariaDB-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Azure Database for MariaDB service using CLI or RestAPI", + "plugin_name": "centreon_azure_database_mariadb_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/azure/custom/", + "cloud/azure/management/monitor/mode/", + "cloud/azure/database/mariadb/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Database-Mariadb-Api/rpm.json b/packaging/centreon-plugin-Cloud-Azure-Database-Mariadb-Api/rpm.json new file mode 100644 index 000000000..4db4877ce --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Database-Mariadb-Api/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Database-Mysql-Api/deb.json b/packaging/centreon-plugin-Cloud-Azure-Database-Mysql-Api/deb.json new file mode 100644 index 000000000..1104140fb --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Database-Mysql-Api/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} + diff --git a/packaging/centreon-plugin-Cloud-Azure-Database-Mysql-Api/pkg.json b/packaging/centreon-plugin-Cloud-Azure-Database-Mysql-Api/pkg.json new file mode 100644 index 000000000..3029205a2 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Database-Mysql-Api/pkg.json @@ -0,0 +1,12 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Azure-Database-MySQL-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Azure Database for MySQL service using CLI or RestAPI", + "plugin_name": "centreon_azure_database_mysql_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/azure/custom/", + "cloud/azure/management/monitor/mode/", + "cloud/azure/database/mysql/" + ] +} + diff --git a/packaging/centreon-plugin-Cloud-Azure-Database-Mysql-Api/rpm.json b/packaging/centreon-plugin-Cloud-Azure-Database-Mysql-Api/rpm.json new file mode 100644 index 000000000..532736f3a --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Database-Mysql-Api/rpm.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Digest::SHA)" + ] +} + diff --git a/packaging/centreon-plugin-Cloud-Azure-Database-Redis-Api/deb.json b/packaging/centreon-plugin-Cloud-Azure-Database-Redis-Api/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Database-Redis-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Database-Redis-Api/pkg.json b/packaging/centreon-plugin-Cloud-Azure-Database-Redis-Api/pkg.json new file mode 100644 index 000000000..e17953a36 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Database-Redis-Api/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Azure-Database-Redis-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Azure Redis Cache service using CLI or RestAPI", + "plugin_name": "centreon_azure_database_redis_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/azure/custom/", + "cloud/azure/management/monitor/mode/", + "cloud/azure/database/redis/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Database-Redis-Api/rpm.json b/packaging/centreon-plugin-Cloud-Azure-Database-Redis-Api/rpm.json new file mode 100644 index 000000000..4db4877ce --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Database-Redis-Api/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Database-SqlDatabase-Api/deb.json b/packaging/centreon-plugin-Cloud-Azure-Database-SqlDatabase-Api/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Database-SqlDatabase-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Database-SqlDatabase-Api/pkg.json b/packaging/centreon-plugin-Cloud-Azure-Database-SqlDatabase-Api/pkg.json new file mode 100644 index 000000000..4ab218f9b --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Database-SqlDatabase-Api/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Azure-Database-SqlDatabase-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Azure Database provider/SQL Database service using CLI or RestAPI", + "plugin_name": "centreon_azure_database_sqldatabase_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/azure/custom/", + "cloud/azure/management/monitor/mode/", + "cloud/azure/database/sqldatabase/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Database-SqlDatabase-Api/rpm.json b/packaging/centreon-plugin-Cloud-Azure-Database-SqlDatabase-Api/rpm.json new file mode 100644 index 000000000..4db4877ce --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Database-SqlDatabase-Api/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Database-SqlManagedInstance/deb.json b/packaging/centreon-plugin-Cloud-Azure-Database-SqlManagedInstance/deb.json new file mode 100644 index 000000000..1104140fb --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Database-SqlManagedInstance/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} + diff --git a/packaging/centreon-plugin-Cloud-Azure-Database-SqlManagedInstance/pkg.json b/packaging/centreon-plugin-Cloud-Azure-Database-SqlManagedInstance/pkg.json new file mode 100644 index 000000000..17b6e18de --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Database-SqlManagedInstance/pkg.json @@ -0,0 +1,12 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Azure-Database-SqlManagedInstance-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Azure SQL Managed Instance service using CLI or RestAPI", + "plugin_name": "centreon_azure_database_sqlmanagedinstance_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/azure/custom/", + "cloud/azure/management/monitor/mode/", + "cloud/azure/database/sqlmanagedinstance/" + ] +} + diff --git a/packaging/centreon-plugin-Cloud-Azure-Database-SqlManagedInstance/rpm.json b/packaging/centreon-plugin-Cloud-Azure-Database-SqlManagedInstance/rpm.json new file mode 100644 index 000000000..532736f3a --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Database-SqlManagedInstance/rpm.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Digest::SHA)" + ] +} + diff --git a/packaging/centreon-plugin-Cloud-Azure-Database-SqlServer-Api/deb.json b/packaging/centreon-plugin-Cloud-Azure-Database-SqlServer-Api/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Database-SqlServer-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Database-SqlServer-Api/pkg.json b/packaging/centreon-plugin-Cloud-Azure-Database-SqlServer-Api/pkg.json new file mode 100644 index 000000000..023a14817 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Database-SqlServer-Api/pkg.json @@ -0,0 +1,12 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Azure-Database-SqlServer-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Azure Database provider/SQL Server service using CLI or RestAPI", + "plugin_name": "centreon_azure_database_sqlserver_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/azure/custom/", + "cloud/azure/management/monitor/mode/discovery.pm", + "cloud/azure/management/monitor/mode/health.pm", + "cloud/azure/database/sqlserver/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Database-SqlServer-Api/rpm.json b/packaging/centreon-plugin-Cloud-Azure-Database-SqlServer-Api/rpm.json new file mode 100644 index 000000000..4db4877ce --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Database-SqlServer-Api/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Devtools-Appconfiguration/deb.json b/packaging/centreon-plugin-Cloud-Azure-Devtools-Appconfiguration/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Devtools-Appconfiguration/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Devtools-Appconfiguration/pkg.json b/packaging/centreon-plugin-Cloud-Azure-Devtools-Appconfiguration/pkg.json new file mode 100644 index 000000000..068c2e5b6 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Devtools-Appconfiguration/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Azure-DevTools-AppConfiguration-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Azure App Configuration service using CLI or RestAPI", + "plugin_name": "centreon_azure_devtools_appconfiguration_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/azure/custom/", + "cloud/azure/devtools/appconfiguration/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Devtools-Appconfiguration/rpm.json b/packaging/centreon-plugin-Cloud-Azure-Devtools-Appconfiguration/rpm.json new file mode 100644 index 000000000..4db4877ce --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Devtools-Appconfiguration/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Integration-Eventgrid-Api/deb.json b/packaging/centreon-plugin-Cloud-Azure-Integration-Eventgrid-Api/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Integration-Eventgrid-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Integration-Eventgrid-Api/pkg.json b/packaging/centreon-plugin-Cloud-Azure-Integration-Eventgrid-Api/pkg.json new file mode 100644 index 000000000..89c8ba67c --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Integration-Eventgrid-Api/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Azure-Integration-EventGrid-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Azure Event Grid service using CLI or RestAPI", + "plugin_name": "centreon_azure_integration_eventgrid_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/azure/custom/", + "cloud/azure/integration/eventgrid/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Integration-Eventgrid-Api/rpm.json b/packaging/centreon-plugin-Cloud-Azure-Integration-Eventgrid-Api/rpm.json new file mode 100644 index 000000000..4db4877ce --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Integration-Eventgrid-Api/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Integration-ServiceBus-Api/deb.json b/packaging/centreon-plugin-Cloud-Azure-Integration-ServiceBus-Api/deb.json new file mode 100644 index 000000000..bc17ef2ad --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Integration-ServiceBus-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Integration-ServiceBus-Api/pkg.json b/packaging/centreon-plugin-Cloud-Azure-Integration-ServiceBus-Api/pkg.json new file mode 100644 index 000000000..050870177 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Integration-ServiceBus-Api/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Azure-Integration-ServiceBus-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Azure ServiceBus Namespace service using CLI or RestAPI", + "plugin_name": "centreon_azure_integration_servicebus_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/azure/custom/", + "cloud/azure/management/monitor/mode/", + "cloud/azure/integration/servicebus/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Integration-ServiceBus-Api/rpm.json b/packaging/centreon-plugin-Cloud-Azure-Integration-ServiceBus-Api/rpm.json new file mode 100644 index 000000000..5c6eab0d4 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Integration-ServiceBus-Api/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Management-ApiManagement-Api/deb.json b/packaging/centreon-plugin-Cloud-Azure-Management-ApiManagement-Api/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Management-ApiManagement-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Management-ApiManagement-Api/pkg.json b/packaging/centreon-plugin-Cloud-Azure-Management-ApiManagement-Api/pkg.json new file mode 100644 index 000000000..ed5573188 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Management-ApiManagement-Api/pkg.json @@ -0,0 +1,12 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Azure-Management-ApiManagement-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Azure Api Management service using CLI or RestAPI", + "plugin_name": "centreon_azure_management_apimanagement_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/azure/custom/", + "cloud/azure/management/monitor/mode/", + "cloud/azure/management/apimanagement/" + ] +} + diff --git a/packaging/centreon-plugin-Cloud-Azure-Management-ApiManagement-Api/rpm.json b/packaging/centreon-plugin-Cloud-Azure-Management-ApiManagement-Api/rpm.json new file mode 100644 index 000000000..4db4877ce --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Management-ApiManagement-Api/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Management-ApplicationInsights-Api/deb.json b/packaging/centreon-plugin-Cloud-Azure-Management-ApplicationInsights-Api/deb.json new file mode 100644 index 000000000..1104140fb --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Management-ApplicationInsights-Api/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} + diff --git a/packaging/centreon-plugin-Cloud-Azure-Management-ApplicationInsights-Api/pkg.json b/packaging/centreon-plugin-Cloud-Azure-Management-ApplicationInsights-Api/pkg.json new file mode 100644 index 000000000..fecc42ccc --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Management-ApplicationInsights-Api/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Azure-Management-ApplicationInsights-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Azure Application Insights service using CLI or RestAPI", + "plugin_name": "centreon_azure_management_applicationinsights_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/azure/custom/", + "cloud/azure/management/applicationinsights/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Management-ApplicationInsights-Api/rpm.json b/packaging/centreon-plugin-Cloud-Azure-Management-ApplicationInsights-Api/rpm.json new file mode 100644 index 000000000..532736f3a --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Management-ApplicationInsights-Api/rpm.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Digest::SHA)" + ] +} + diff --git a/packaging/centreon-plugin-Cloud-Azure-Management-Automation-Api/deb.json b/packaging/centreon-plugin-Cloud-Azure-Management-Automation-Api/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Management-Automation-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Management-Automation-Api/pkg.json b/packaging/centreon-plugin-Cloud-Azure-Management-Automation-Api/pkg.json new file mode 100644 index 000000000..58f74ed78 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Management-Automation-Api/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Azure-Management-Automation-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Azure Automation service using CLI or RestAPI", + "plugin_name": "centreon_azure_management_automation_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/azure/custom/", + "cloud/azure/management/monitor/", + "cloud/azure/management/automation/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Management-Automation-Api/rpm.json b/packaging/centreon-plugin-Cloud-Azure-Management-Automation-Api/rpm.json new file mode 100644 index 000000000..4db4877ce --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Management-Automation-Api/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Management-Costs-Api/deb.json b/packaging/centreon-plugin-Cloud-Azure-Management-Costs-Api/deb.json new file mode 100644 index 000000000..e8ca247c8 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Management-Costs-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Cloud-Azure-Management-Costs-Api/pkg.json b/packaging/centreon-plugin-Cloud-Azure-Management-Costs-Api/pkg.json new file mode 100644 index 000000000..09ee4e395 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Management-Costs-Api/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Azure-Management-Costs-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Azure Consumptions using RestAPI", + "plugin_name": "centreon_azure_management_costs_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/azure/custom/", + "cloud/azure/management/costs/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Cloud-Azure-Management-Costs-Api/rpm.json b/packaging/centreon-plugin-Cloud-Azure-Management-Costs-Api/rpm.json new file mode 100644 index 000000000..45de58385 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Management-Costs-Api/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(DateTime)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Cloud-Azure-Management-Discover-Api/deb.json b/packaging/centreon-plugin-Cloud-Azure-Management-Discover-Api/deb.json new file mode 100644 index 000000000..bc17ef2ad --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Management-Discover-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Management-Discover-Api/pkg.json b/packaging/centreon-plugin-Cloud-Azure-Management-Discover-Api/pkg.json new file mode 100644 index 000000000..70f7c4781 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Management-Discover-Api/pkg.json @@ -0,0 +1,12 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Azure-Management-Discover-Api", + "pkg_summary": "Centreon Plugin to discover Microsoft Azure resources using CLI or RestAPI", + "plugin_name": "centreon_azure_management_discover_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/azure/custom/", + "cloud/azure/management/monitor/mode/discovery.pm", + "cloud/azure/management/monitor/mode/discoverytenant.pm", + "cloud/azure/management/discover/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Management-Discover-Api/rpm.json b/packaging/centreon-plugin-Cloud-Azure-Management-Discover-Api/rpm.json new file mode 100644 index 000000000..5c6eab0d4 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Management-Discover-Api/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Management-InsightsMetrics-Api/deb.json b/packaging/centreon-plugin-Cloud-Azure-Management-InsightsMetrics-Api/deb.json new file mode 100644 index 000000000..c7353d85f --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Management-InsightsMetrics-Api/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libdatetime-perl", + "libtime-parsedate-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Management-InsightsMetrics-Api/pkg.json b/packaging/centreon-plugin-Cloud-Azure-Management-InsightsMetrics-Api/pkg.json new file mode 100644 index 000000000..d256fd4be --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Management-InsightsMetrics-Api/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Azure-Management-InsightsMetrics-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Azure InsghtsMetrics using LogAnalytics RestAPI", + "plugin_name": "centreon_azure_management_insightsmetrics_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/azure/custom/", + "cloud/azure/management/insightsmetrics/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Management-InsightsMetrics-Api/rpm.json b/packaging/centreon-plugin-Cloud-Azure-Management-InsightsMetrics-Api/rpm.json new file mode 100644 index 000000000..5c6eab0d4 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Management-InsightsMetrics-Api/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Management-Log-Analytics-Api/deb.json b/packaging/centreon-plugin-Cloud-Azure-Management-Log-Analytics-Api/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Management-Log-Analytics-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Management-Log-Analytics-Api/pkg.json b/packaging/centreon-plugin-Cloud-Azure-Management-Log-Analytics-Api/pkg.json new file mode 100644 index 000000000..9ce6e2721 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Management-Log-Analytics-Api/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Azure-Management-Log-Analytics-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Azure Management provider/Log Analytics service using CLI or RestAPI", + "plugin_name": "centreon_azure_management_loganalytics_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/azure/custom/", + "cloud/azure/management/loganalytics/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Management-Log-Analytics-Api/rpm.json b/packaging/centreon-plugin-Cloud-Azure-Management-Log-Analytics-Api/rpm.json new file mode 100644 index 000000000..4db4877ce --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Management-Log-Analytics-Api/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Management-Monitor-Api/deb.json b/packaging/centreon-plugin-Cloud-Azure-Management-Monitor-Api/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Management-Monitor-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Management-Monitor-Api/pkg.json b/packaging/centreon-plugin-Cloud-Azure-Management-Monitor-Api/pkg.json new file mode 100644 index 000000000..f8de802aa --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Management-Monitor-Api/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Azure-Management-Monitor-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Azure Management provider/Monitor service using CLI or RestAPI", + "plugin_name": "centreon_azure_management_monitor_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/azure/custom/", + "cloud/azure/management/monitor/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Management-Monitor-Api/rpm.json b/packaging/centreon-plugin-Cloud-Azure-Management-Monitor-Api/rpm.json new file mode 100644 index 000000000..a0823edd7 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Management-Monitor-Api/rpm.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Digest::SHA)" + ], + "custom_pkg_data": "Obsoletes: centreon-plugin-Cloud-Azure-Monitor-Api" +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Management-Recovery-Api/deb.json b/packaging/centreon-plugin-Cloud-Azure-Management-Recovery-Api/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Management-Recovery-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Management-Recovery-Api/pkg.json b/packaging/centreon-plugin-Cloud-Azure-Management-Recovery-Api/pkg.json new file mode 100644 index 000000000..cbd3f0a4b --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Management-Recovery-Api/pkg.json @@ -0,0 +1,12 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Azure-Management-Recovery-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Azure Management provider/Recovery service using CLI or RestAPI", + "plugin_name": "centreon_azure_management_recovery_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/azure/custom/", + "cloud/azure/management/monitor/mode/discovery.pm", + "cloud/azure/management/monitor/mode/health.pm", + "cloud/azure/management/recovery/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Management-Recovery-Api/rpm.json b/packaging/centreon-plugin-Cloud-Azure-Management-Recovery-Api/rpm.json new file mode 100644 index 000000000..bf6d3f031 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Management-Recovery-Api/rpm.json @@ -0,0 +1,8 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Digest::SHA)", + "perl(DateTime-Format-Duration-ISO8601)", + "perl(DateTime::Duration)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Management-Resource-Api/deb.json b/packaging/centreon-plugin-Cloud-Azure-Management-Resource-Api/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Management-Resource-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Management-Resource-Api/pkg.json b/packaging/centreon-plugin-Cloud-Azure-Management-Resource-Api/pkg.json new file mode 100644 index 000000000..3026b3c7f --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Management-Resource-Api/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Azure-Management-Resource-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Azure Management provider/Resource service using CLI or RestAPI", + "plugin_name": "centreon_azure_management_resource_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/azure/custom/", + "cloud/azure/management/monitor/mode/discovery.pm", + "cloud/azure/management/resource/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Management-Resource-Api/rpm.json b/packaging/centreon-plugin-Cloud-Azure-Management-Resource-Api/rpm.json new file mode 100644 index 000000000..44d3e16bc --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Management-Resource-Api/rpm.json @@ -0,0 +1,9 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Digest::SHA)", + "perl(DateTime-Format-Duration-ISO8601)", + "perl(DateTime::Duration)" + ], + "custom_pkg_data": "Obsoletes: centreon-plugin-Cloud-Azure-Resources-Api" +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Network-AppGateway-Api/deb.json b/packaging/centreon-plugin-Cloud-Azure-Network-AppGateway-Api/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Network-AppGateway-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Network-AppGateway-Api/pkg.json b/packaging/centreon-plugin-Cloud-Azure-Network-AppGateway-Api/pkg.json new file mode 100644 index 000000000..7ef169fb4 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Network-AppGateway-Api/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Azure-Network-AppGateway-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Azure Application Gateway service using CLI or RestAPI", + "plugin_name": "centreon_azure_network_appgateway_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/azure/custom/", + "cloud/azure/management/monitor/mode/", + "cloud/azure/network/appgateway/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Network-AppGateway-Api/rpm.json b/packaging/centreon-plugin-Cloud-Azure-Network-AppGateway-Api/rpm.json new file mode 100644 index 000000000..4db4877ce --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Network-AppGateway-Api/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Network-CDN-Api/deb.json b/packaging/centreon-plugin-Cloud-Azure-Network-CDN-Api/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Network-CDN-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Network-CDN-Api/pkg.json b/packaging/centreon-plugin-Cloud-Azure-Network-CDN-Api/pkg.json new file mode 100644 index 000000000..75c82968f --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Network-CDN-Api/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Azure-Network-CDN-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Azure CDN profiles service using CLI or RestAPI", + "plugin_name": "centreon_azure_network_cdn_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/azure/custom/", + "cloud/azure/network/cdn/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Network-CDN-Api/rpm.json b/packaging/centreon-plugin-Cloud-Azure-Network-CDN-Api/rpm.json new file mode 100644 index 000000000..4db4877ce --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Network-CDN-Api/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Network-ExpressRoute-Api/deb.json b/packaging/centreon-plugin-Cloud-Azure-Network-ExpressRoute-Api/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Network-ExpressRoute-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Network-ExpressRoute-Api/pkg.json b/packaging/centreon-plugin-Cloud-Azure-Network-ExpressRoute-Api/pkg.json new file mode 100644 index 000000000..61e0a93ef --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Network-ExpressRoute-Api/pkg.json @@ -0,0 +1,12 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Azure-Network-ExpressRoute-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Azure Network provider/ExpressRoute service using CLI or RestAPI", + "plugin_name": "centreon_azure_network_expressroute_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/azure/custom/", + "cloud/azure/management/monitor/mode/discovery.pm", + "cloud/azure/management/monitor/mode/health.pm", + "cloud/azure/network/expressroute/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Network-ExpressRoute-Api/rpm.json b/packaging/centreon-plugin-Cloud-Azure-Network-ExpressRoute-Api/rpm.json new file mode 100644 index 000000000..4db4877ce --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Network-ExpressRoute-Api/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Network-Firewall-Api/deb.json b/packaging/centreon-plugin-Cloud-Azure-Network-Firewall-Api/deb.json new file mode 100644 index 000000000..bc17ef2ad --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Network-Firewall-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Network-Firewall-Api/pkg.json b/packaging/centreon-plugin-Cloud-Azure-Network-Firewall-Api/pkg.json new file mode 100644 index 000000000..01541fb76 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Network-Firewall-Api/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Azure-Network-Firewall-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Azure Firewall service using CLI or RestAPI", + "plugin_name": "centreon_azure_network_firewall_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/azure/custom/", + "cloud/azure/management/monitor/mode/discovery.pm", + "cloud/azure/network/firewall/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Network-Firewall-Api/rpm.json b/packaging/centreon-plugin-Cloud-Azure-Network-Firewall-Api/rpm.json new file mode 100644 index 000000000..5c6eab0d4 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Network-Firewall-Api/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Network-FrontDoor-Api/deb.json b/packaging/centreon-plugin-Cloud-Azure-Network-FrontDoor-Api/deb.json new file mode 100644 index 000000000..bc17ef2ad --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Network-FrontDoor-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Network-FrontDoor-Api/pkg.json b/packaging/centreon-plugin-Cloud-Azure-Network-FrontDoor-Api/pkg.json new file mode 100644 index 000000000..edef59a3c --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Network-FrontDoor-Api/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Azure-Network-FrontDoor-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Azure Front Door service using CLI or RestAPI", + "plugin_name": "centreon_azure_network_frontdoor_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/azure/custom/", + "cloud/azure/management/monitor/mode/", + "cloud/azure/network/frontdoor/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Network-FrontDoor-Api/rpm.json b/packaging/centreon-plugin-Cloud-Azure-Network-FrontDoor-Api/rpm.json new file mode 100644 index 000000000..5c6eab0d4 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Network-FrontDoor-Api/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Network-LoadBalancer-Api/deb.json b/packaging/centreon-plugin-Cloud-Azure-Network-LoadBalancer-Api/deb.json new file mode 100644 index 000000000..bc17ef2ad --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Network-LoadBalancer-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Network-LoadBalancer-Api/pkg.json b/packaging/centreon-plugin-Cloud-Azure-Network-LoadBalancer-Api/pkg.json new file mode 100644 index 000000000..4f823e935 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Network-LoadBalancer-Api/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Azure-Network-LoadBalancer-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Azure Load Balancers service using CLI or RestAPI", + "plugin_name": "centreon_azure_network_loadbalancer_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/azure/custom/", + "cloud/azure/management/monitor/mode/discovery.pm", + "cloud/azure/network/loadbalancer/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Network-LoadBalancer-Api/rpm.json b/packaging/centreon-plugin-Cloud-Azure-Network-LoadBalancer-Api/rpm.json new file mode 100644 index 000000000..c081bd37b --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Network-LoadBalancer-Api/rpm.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Digest::SHA)" + ], + "custom_pkg_data": "Obsoletes: centreon-plugin-Cloud-Azure-Nework-LoadBalancer-Api" +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Network-NetworkInterface-Api/deb.json b/packaging/centreon-plugin-Cloud-Azure-Network-NetworkInterface-Api/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Network-NetworkInterface-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Network-NetworkInterface-Api/pkg.json b/packaging/centreon-plugin-Cloud-Azure-Network-NetworkInterface-Api/pkg.json new file mode 100644 index 000000000..7f8a7653f --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Network-NetworkInterface-Api/pkg.json @@ -0,0 +1,12 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Azure-Network-NetworkInterface-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Azure Network provider/Network Interface service using CLI or RestAPI", + "plugin_name": "centreon_azure_network_networkinterface_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/azure/custom/", + "cloud/azure/management/monitor/mode/discovery.pm", + "cloud/azure/management/monitor/mode/health.pm", + "cloud/azure/network/networkinterface/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Network-NetworkInterface-Api/rpm.json b/packaging/centreon-plugin-Cloud-Azure-Network-NetworkInterface-Api/rpm.json new file mode 100644 index 000000000..0bea580f7 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Network-NetworkInterface-Api/rpm.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Digest::SHA)" + ], + "custom_pkg_data": "Obsoletes: centreon-plugin-Cloud-Azure-Network-Api" +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Network-PublicIP-Api/deb.json b/packaging/centreon-plugin-Cloud-Azure-Network-PublicIP-Api/deb.json new file mode 100644 index 000000000..bc17ef2ad --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Network-PublicIP-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Network-PublicIP-Api/pkg.json b/packaging/centreon-plugin-Cloud-Azure-Network-PublicIP-Api/pkg.json new file mode 100644 index 000000000..4b8e0cc83 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Network-PublicIP-Api/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Azure-Network-PublicIP-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Azure Public IP service using CLI or RestAPI", + "plugin_name": "centreon_azure_network_publicip_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/azure/custom/", + "cloud/azure/management/monitor/mode/discovery.pm", + "cloud/azure/network/publicip/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Network-PublicIP-Api/rpm.json b/packaging/centreon-plugin-Cloud-Azure-Network-PublicIP-Api/rpm.json new file mode 100644 index 000000000..5c6eab0d4 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Network-PublicIP-Api/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Network-TrafficManager/deb.json b/packaging/centreon-plugin-Cloud-Azure-Network-TrafficManager/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Network-TrafficManager/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Network-TrafficManager/pkg.json b/packaging/centreon-plugin-Cloud-Azure-Network-TrafficManager/pkg.json new file mode 100644 index 000000000..4c93e1dc0 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Network-TrafficManager/pkg.json @@ -0,0 +1,12 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Azure-Network-TrafficManager-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Azure Network Traffic Manager using CLI or RestAPI", + "plugin_name": "centreon_azure_network_trafficmanager_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/azure/custom/", + "cloud/azure/management/monitor/mode/discovery.pm", + "cloud/azure/management/monitor/mode/health.pm", + "cloud/azure/network/trafficmanager/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Network-TrafficManager/rpm.json b/packaging/centreon-plugin-Cloud-Azure-Network-TrafficManager/rpm.json new file mode 100644 index 000000000..4db4877ce --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Network-TrafficManager/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Network-VirtualNetwork-Api/deb.json b/packaging/centreon-plugin-Cloud-Azure-Network-VirtualNetwork-Api/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Network-VirtualNetwork-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Network-VirtualNetwork-Api/pkg.json b/packaging/centreon-plugin-Cloud-Azure-Network-VirtualNetwork-Api/pkg.json new file mode 100644 index 000000000..4942c0fee --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Network-VirtualNetwork-Api/pkg.json @@ -0,0 +1,12 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Azure-Network-VirtualNetwork-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Azure Network provider/Virtual Network service using CLI or RestAPI", + "plugin_name": "centreon_azure_network_virtualnetwork_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/azure/custom/", + "cloud/azure/management/monitor/mode/discovery.pm", + "cloud/azure/management/monitor/mode/health.pm", + "cloud/azure/network/virtualnetwork/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Network-VirtualNetwork-Api/rpm.json b/packaging/centreon-plugin-Cloud-Azure-Network-VirtualNetwork-Api/rpm.json new file mode 100644 index 000000000..4db4877ce --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Network-VirtualNetwork-Api/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Network-VpnGateway-Api/deb.json b/packaging/centreon-plugin-Cloud-Azure-Network-VpnGateway-Api/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Network-VpnGateway-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Network-VpnGateway-Api/pkg.json b/packaging/centreon-plugin-Cloud-Azure-Network-VpnGateway-Api/pkg.json new file mode 100644 index 000000000..536b5f19b --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Network-VpnGateway-Api/pkg.json @@ -0,0 +1,12 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Azure-Network-VpnGateway-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Azure Network provider/VpnGateway service using CLI or RestAPI", + "plugin_name": "centreon_azure_network_vpngateway_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/azure/custom/", + "cloud/azure/management/monitor/mode/discovery.pm", + "cloud/azure/management/monitor/mode/health.pm", + "cloud/azure/network/vpngateway/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Network-VpnGateway-Api/rpm.json b/packaging/centreon-plugin-Cloud-Azure-Network-VpnGateway-Api/rpm.json new file mode 100644 index 000000000..4db4877ce --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Network-VpnGateway-Api/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Security-KeyVault-Api/deb.json b/packaging/centreon-plugin-Cloud-Azure-Security-KeyVault-Api/deb.json new file mode 100644 index 000000000..bc17ef2ad --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Security-KeyVault-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Security-KeyVault-Api/pkg.json b/packaging/centreon-plugin-Cloud-Azure-Security-KeyVault-Api/pkg.json new file mode 100644 index 000000000..1c1fd8e92 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Security-KeyVault-Api/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Azure-Security-KeyVault-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Azure Key Vault service using CLI or RestAPI", + "plugin_name": "centreon_azure_security_keyvault_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/azure/custom/", + "cloud/azure/management/monitor/mode/discovery.pm", + "cloud/azure/security/keyvault/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Security-KeyVault-Api/rpm.json b/packaging/centreon-plugin-Cloud-Azure-Security-KeyVault-Api/rpm.json new file mode 100644 index 000000000..5c6eab0d4 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Security-KeyVault-Api/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Storage-ContainerRegistry-Api/deb.json b/packaging/centreon-plugin-Cloud-Azure-Storage-ContainerRegistry-Api/deb.json new file mode 100644 index 000000000..bc17ef2ad --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Storage-ContainerRegistry-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Storage-ContainerRegistry-Api/pkg.json b/packaging/centreon-plugin-Cloud-Azure-Storage-ContainerRegistry-Api/pkg.json new file mode 100644 index 000000000..d17c97b66 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Storage-ContainerRegistry-Api/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Azure-Storage-ContainerRegistry-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Azure Container Registry service using CLI or RestAPI", + "plugin_name": "centreon_azure_storage_acr_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/azure/custom/", + "cloud/azure/management/monitor/mode/discovery.pm", + "cloud/azure/storage/acr/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Storage-ContainerRegistry-Api/rpm.json b/packaging/centreon-plugin-Cloud-Azure-Storage-ContainerRegistry-Api/rpm.json new file mode 100644 index 000000000..5c6eab0d4 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Storage-ContainerRegistry-Api/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Storage-StorageAccount-Api/deb.json b/packaging/centreon-plugin-Cloud-Azure-Storage-StorageAccount-Api/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Storage-StorageAccount-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Storage-StorageAccount-Api/pkg.json b/packaging/centreon-plugin-Cloud-Azure-Storage-StorageAccount-Api/pkg.json new file mode 100644 index 000000000..3d9b59a15 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Storage-StorageAccount-Api/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Azure-Storage-StorageAccount-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Azure Storage provider/Storage Account service using CLI or RestAPI", + "plugin_name": "centreon_azure_storage_storageaccount_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/azure/custom/", + "cloud/azure/common/storageaccount/", + "cloud/azure/management/monitor/mode/discovery.pm", + "cloud/azure/management/monitor/mode/health.pm", + "cloud/azure/storage/storageaccount/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Storage-StorageAccount-Api/rpm.json b/packaging/centreon-plugin-Cloud-Azure-Storage-StorageAccount-Api/rpm.json new file mode 100644 index 000000000..93cea7bce --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Storage-StorageAccount-Api/rpm.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Digest::SHA)" + ], + "custom_pkg_data": "Obsoletes: centreon-plugin-Cloud-Azure-Storage-Api" +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Storage-StorageSync-Api/deb.json b/packaging/centreon-plugin-Cloud-Azure-Storage-StorageSync-Api/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Storage-StorageSync-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Storage-StorageSync-Api/pkg.json b/packaging/centreon-plugin-Cloud-Azure-Storage-StorageSync-Api/pkg.json new file mode 100644 index 000000000..4ad359b92 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Storage-StorageSync-Api/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Azure-Storage-StorageSync-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Azure StorageSync service using CLI or RestAPI", + "plugin_name": "centreon_azure_storage_storagesync_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/azure/custom/", + "cloud/azure/storage/storagesync/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Storage-StorageSync-Api/rpm.json b/packaging/centreon-plugin-Cloud-Azure-Storage-StorageSync-Api/rpm.json new file mode 100644 index 000000000..4db4877ce --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Storage-StorageSync-Api/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Web-AppService-Api/deb.json b/packaging/centreon-plugin-Cloud-Azure-Web-AppService-Api/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Web-AppService-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Web-AppService-Api/pkg.json b/packaging/centreon-plugin-Cloud-Azure-Web-AppService-Api/pkg.json new file mode 100644 index 000000000..570108b1f --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Web-AppService-Api/pkg.json @@ -0,0 +1,12 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Azure-Web-AppService-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Azure Web App Service service using CLI or RestAPI", + "plugin_name": "centreon_azure_web_appservice_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/azure/custom/", + "cloud/azure/management/monitor/mode/", + "cloud/azure/web/appservice/", + "cloud/azure/common/appservice/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Web-AppService-Api/rpm.json b/packaging/centreon-plugin-Cloud-Azure-Web-AppService-Api/rpm.json new file mode 100644 index 000000000..4db4877ce --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Web-AppService-Api/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Web-AppServicePlan-Api/deb.json b/packaging/centreon-plugin-Cloud-Azure-Web-AppServicePlan-Api/deb.json new file mode 100644 index 000000000..bc17ef2ad --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Web-AppServicePlan-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Web-AppServicePlan-Api/pkg.json b/packaging/centreon-plugin-Cloud-Azure-Web-AppServicePlan-Api/pkg.json new file mode 100644 index 000000000..43987dee2 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Web-AppServicePlan-Api/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Azure-Web-AppServicePlan-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Azure Web App Service Plan service using CLI or RestAPI", + "plugin_name": "centreon_azure_web_appserviceplan_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/azure/custom/", + "cloud/azure/management/monitor/mode/", + "cloud/azure/web/appserviceplan/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Web-AppServicePlan-Api/rpm.json b/packaging/centreon-plugin-Cloud-Azure-Web-AppServicePlan-Api/rpm.json new file mode 100644 index 000000000..5c6eab0d4 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Web-AppServicePlan-Api/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Web-SignalR-Api/deb.json b/packaging/centreon-plugin-Cloud-Azure-Web-SignalR-Api/deb.json new file mode 100644 index 000000000..bc17ef2ad --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Web-SignalR-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Web-SignalR-Api/pkg.json b/packaging/centreon-plugin-Cloud-Azure-Web-SignalR-Api/pkg.json new file mode 100644 index 000000000..ef1d30023 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Web-SignalR-Api/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Azure-Web-SignalR-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Azure Web SignalR service using CLI or RestAPI", + "plugin_name": "centreon_azure_web_signalr_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/azure/custom/", + "cloud/azure/management/monitor/mode/", + "cloud/azure/web/signalr/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Azure-Web-SignalR-Api/rpm.json b/packaging/centreon-plugin-Cloud-Azure-Web-SignalR-Api/rpm.json new file mode 100644 index 000000000..5c6eab0d4 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Azure-Web-SignalR-Api/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Cloudfoundry-Restapi/deb.json b/packaging/centreon-plugin-Cloud-Cloudfoundry-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Cloudfoundry-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Cloud-Cloudfoundry-Restapi/pkg.json b/packaging/centreon-plugin-Cloud-Cloudfoundry-Restapi/pkg.json new file mode 100644 index 000000000..ccb0036d2 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Cloudfoundry-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Cloudfoundry-Restapi", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_cloudfoundry_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/cloudfoundry/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Cloudfoundry-Restapi/rpm.json b/packaging/centreon-plugin-Cloud-Cloudfoundry-Restapi/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Cloudfoundry-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Cloud-Gcp-CloudSQL-MySQL-Api/deb.json b/packaging/centreon-plugin-Cloud-Gcp-CloudSQL-MySQL-Api/deb.json new file mode 100644 index 000000000..a828d008c --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Gcp-CloudSQL-MySQL-Api/deb.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "libdatetime-perl", + "libjson-webtoken-perl", + "libcrypt-openssl-rsa-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Gcp-CloudSQL-MySQL-Api/pkg.json b/packaging/centreon-plugin-Cloud-Gcp-CloudSQL-MySQL-Api/pkg.json new file mode 100644 index 000000000..be9a0bef4 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Gcp-CloudSQL-MySQL-Api/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Gcp-CloudSQL-MySQL-Api", + "pkg_summary": "Centreon Plugin to monitor Google Cloud Platform CloudSQL MySQL service using RestAPI", + "plugin_name": "centreon_gcp_cloudsql_mysql_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/google/gcp/custom/", + "cloud/google/gcp/cloudsql/common/", + "cloud/google/gcp/cloudsql/mysql/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Gcp-CloudSQL-MySQL-Api/rpm.json b/packaging/centreon-plugin-Cloud-Gcp-CloudSQL-MySQL-Api/rpm.json new file mode 100644 index 000000000..ad06a6541 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Gcp-CloudSQL-MySQL-Api/rpm.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(JSON::WebToken)", + "perl(Crypt::OpenSSL::RSA)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Gcp-Compute-ComputeEngine-Api/deb.json b/packaging/centreon-plugin-Cloud-Gcp-Compute-ComputeEngine-Api/deb.json new file mode 100644 index 000000000..a828d008c --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Gcp-Compute-ComputeEngine-Api/deb.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "libdatetime-perl", + "libjson-webtoken-perl", + "libcrypt-openssl-rsa-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Gcp-Compute-ComputeEngine-Api/pkg.json b/packaging/centreon-plugin-Cloud-Gcp-Compute-ComputeEngine-Api/pkg.json new file mode 100644 index 000000000..20104c4fa --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Gcp-Compute-ComputeEngine-Api/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Gcp-Compute-ComputeEngine-Api", + "pkg_summary": "Centreon Plugin to monitor Google Cloud Platform Compute provider/Compute Engine service using RestAPI", + "plugin_name": "centreon_gcp_compute_computeengine_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/google/gcp/custom/", + "cloud/google/gcp/compute/computeengine/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Gcp-Compute-ComputeEngine-Api/rpm.json b/packaging/centreon-plugin-Cloud-Gcp-Compute-ComputeEngine-Api/rpm.json new file mode 100644 index 000000000..ad06a6541 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Gcp-Compute-ComputeEngine-Api/rpm.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(JSON::WebToken)", + "perl(Crypt::OpenSSL::RSA)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Gcp-Management-Stackdriver-Api/deb.json b/packaging/centreon-plugin-Cloud-Gcp-Management-Stackdriver-Api/deb.json new file mode 100644 index 000000000..a828d008c --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Gcp-Management-Stackdriver-Api/deb.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "libdatetime-perl", + "libjson-webtoken-perl", + "libcrypt-openssl-rsa-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Gcp-Management-Stackdriver-Api/pkg.json b/packaging/centreon-plugin-Cloud-Gcp-Management-Stackdriver-Api/pkg.json new file mode 100644 index 000000000..9106fb4a3 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Gcp-Management-Stackdriver-Api/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Gcp-Management-Stackdriver-Api", + "pkg_summary": "Centreon Plugin to monitor Google Cloud Platform Stackdriver service using RestAPI", + "plugin_name": "centreon_gcp_management_stackdriver_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/google/gcp/custom/", + "cloud/google/gcp/management/stackdriver/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Gcp-Management-Stackdriver-Api/rpm.json b/packaging/centreon-plugin-Cloud-Gcp-Management-Stackdriver-Api/rpm.json new file mode 100644 index 000000000..ad06a6541 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Gcp-Management-Stackdriver-Api/rpm.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(JSON::WebToken)", + "perl(Crypt::OpenSSL::RSA)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Gcp-Storage-Api/deb.json b/packaging/centreon-plugin-Cloud-Gcp-Storage-Api/deb.json new file mode 100644 index 000000000..a828d008c --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Gcp-Storage-Api/deb.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "libdatetime-perl", + "libjson-webtoken-perl", + "libcrypt-openssl-rsa-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Gcp-Storage-Api/pkg.json b/packaging/centreon-plugin-Cloud-Gcp-Storage-Api/pkg.json new file mode 100644 index 000000000..c1f710d54 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Gcp-Storage-Api/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Gcp-Storage-Api", + "pkg_summary": "Centreon Plugin to monitor Google Cloud Platform Storage service using RestAPI", + "plugin_name": "centreon_gcp_storage_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/google/gcp/custom/", + "cloud/google/gcp/storage/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Gcp-Storage-Api/rpm.json b/packaging/centreon-plugin-Cloud-Gcp-Storage-Api/rpm.json new file mode 100644 index 000000000..ad06a6541 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Gcp-Storage-Api/rpm.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(JSON::WebToken)", + "perl(Crypt::OpenSSL::RSA)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Ibm-Softlayer-Api/deb.json b/packaging/centreon-plugin-Cloud-Ibm-Softlayer-Api/deb.json new file mode 100644 index 000000000..49a172692 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Ibm-Softlayer-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libxml-simple-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Ibm-Softlayer-Api/pkg.json b/packaging/centreon-plugin-Cloud-Ibm-Softlayer-Api/pkg.json new file mode 100644 index 000000000..01a7e73ea --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Ibm-Softlayer-Api/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Ibm-Softlayer-Api", + "pkg_summary": "Centreon Plugin to monitor IBM Cloud SoftLayer using API", + "plugin_name": "centreon_ibm_softlayer_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/ibm/softlayer/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Ibm-Softlayer-Api/rpm.json b/packaging/centreon-plugin-Cloud-Ibm-Softlayer-Api/rpm.json new file mode 100644 index 000000000..049fa4c5d --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Ibm-Softlayer-Api/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(XML::Simple)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Iics-Restapi/deb.json b/packaging/centreon-plugin-Cloud-Iics-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Iics-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Cloud-Iics-Restapi/pkg.json b/packaging/centreon-plugin-Cloud-Iics-Restapi/pkg.json new file mode 100644 index 000000000..2937b5e0a --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Iics-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Iics-Restapi", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_iics_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/iics/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Iics-Restapi/rpm.json b/packaging/centreon-plugin-Cloud-Iics-Restapi/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Iics-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Cloud-Kubernetes-Api/deb.json b/packaging/centreon-plugin-Cloud-Kubernetes-Api/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Kubernetes-Api/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Cloud-Kubernetes-Api/pkg.json b/packaging/centreon-plugin-Cloud-Kubernetes-Api/pkg.json new file mode 100644 index 000000000..2fd23b80f --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Kubernetes-Api/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Kubernetes-Api", + "pkg_summary": "Centreon Plugin to monitor Kubernetes cluster using CLI (kubectl) or RestAPI", + "plugin_name": "centreon_kubernetes_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/kubernetes/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Kubernetes-Api/rpm.json b/packaging/centreon-plugin-Cloud-Kubernetes-Api/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Kubernetes-Api/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Cloud-Microsoft-Office365-AzureAD-Api/deb.json b/packaging/centreon-plugin-Cloud-Microsoft-Office365-AzureAD-Api/deb.json new file mode 100644 index 000000000..1cef08b04 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Microsoft-Office365-AzureAD-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libtext-csv-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Microsoft-Office365-AzureAD-Api/pkg.json b/packaging/centreon-plugin-Cloud-Microsoft-Office365-AzureAD-Api/pkg.json new file mode 100644 index 000000000..2b2298a53 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Microsoft-Office365-AzureAD-Api/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Microsoft-Office365-AzureAD-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Office 365 Azure AD using RestAPI", + "plugin_name": "centreon_office365_azuread_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/microsoft/office365/custom/graphapi.pm", + "cloud/microsoft/office365/azuread/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Cloud-Microsoft-Office365-AzureAD-Api/rpm.json b/packaging/centreon-plugin-Cloud-Microsoft-Office365-AzureAD-Api/rpm.json new file mode 100644 index 000000000..b479997ce --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Microsoft-Office365-AzureAD-Api/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(Text::CSV)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Cloud-Microsoft-Office365-Exchange-Api/deb.json b/packaging/centreon-plugin-Cloud-Microsoft-Office365-Exchange-Api/deb.json new file mode 100644 index 000000000..8c7f62f0d --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Microsoft-Office365-Exchange-Api/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libtext-csv-perl", + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Microsoft-Office365-Exchange-Api/pkg.json b/packaging/centreon-plugin-Cloud-Microsoft-Office365-Exchange-Api/pkg.json new file mode 100644 index 000000000..3eb242080 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Microsoft-Office365-Exchange-Api/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Microsoft-Office365-Exchange-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Office 365 Exchange using RestAPI", + "plugin_name": "centreon_office365_exchange_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/microsoft/office365/custom/graphapi.pm", + "cloud/microsoft/office365/exchange/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Microsoft-Office365-Exchange-Api/rpm.json b/packaging/centreon-plugin-Cloud-Microsoft-Office365-Exchange-Api/rpm.json new file mode 100644 index 000000000..77d5010e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Microsoft-Office365-Exchange-Api/rpm.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "perl(Text::CSV)", + "perl(DateTime)", + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Microsoft-Office365-Management-Api/deb.json b/packaging/centreon-plugin-Cloud-Microsoft-Office365-Management-Api/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Microsoft-Office365-Management-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Microsoft-Office365-Management-Api/pkg.json b/packaging/centreon-plugin-Cloud-Microsoft-Office365-Management-Api/pkg.json new file mode 100644 index 000000000..a223b0610 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Microsoft-Office365-Management-Api/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Microsoft-Office365-Management-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Office 365 management tasks using RestAPI", + "plugin_name": "centreon_office365_management_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/microsoft/office365/custom/graphapi.pm", + "cloud/microsoft/office365/management/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Microsoft-Office365-Management-Api/rpm.json b/packaging/centreon-plugin-Cloud-Microsoft-Office365-Management-Api/rpm.json new file mode 100644 index 000000000..e9dff7552 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Microsoft-Office365-Management-Api/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(DateTime)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Microsoft-Office365-Onedrive-Api/deb.json b/packaging/centreon-plugin-Cloud-Microsoft-Office365-Onedrive-Api/deb.json new file mode 100644 index 000000000..8c7f62f0d --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Microsoft-Office365-Onedrive-Api/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libtext-csv-perl", + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Microsoft-Office365-Onedrive-Api/pkg.json b/packaging/centreon-plugin-Cloud-Microsoft-Office365-Onedrive-Api/pkg.json new file mode 100644 index 000000000..ccf07f3b9 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Microsoft-Office365-Onedrive-Api/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Microsoft-Office365-Onedrive-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Office 365 OneDrive using RestAPI", + "plugin_name": "centreon_office365_onedrive_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/microsoft/office365/custom/graphapi.pm", + "cloud/microsoft/office365/onedrive/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Microsoft-Office365-Onedrive-Api/rpm.json b/packaging/centreon-plugin-Cloud-Microsoft-Office365-Onedrive-Api/rpm.json new file mode 100644 index 000000000..77d5010e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Microsoft-Office365-Onedrive-Api/rpm.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "perl(Text::CSV)", + "perl(DateTime)", + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Microsoft-Office365-Sharepoint-Api/deb.json b/packaging/centreon-plugin-Cloud-Microsoft-Office365-Sharepoint-Api/deb.json new file mode 100644 index 000000000..8c7f62f0d --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Microsoft-Office365-Sharepoint-Api/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libtext-csv-perl", + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Microsoft-Office365-Sharepoint-Api/pkg.json b/packaging/centreon-plugin-Cloud-Microsoft-Office365-Sharepoint-Api/pkg.json new file mode 100644 index 000000000..3974266b9 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Microsoft-Office365-Sharepoint-Api/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Microsoft-Office365-Sharepoint-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Office 365 SharePoint using RestAPI", + "plugin_name": "centreon_office365_sharepoint_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/microsoft/office365/custom/graphapi.pm", + "cloud/microsoft/office365/sharepoint/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Microsoft-Office365-Sharepoint-Api/rpm.json b/packaging/centreon-plugin-Cloud-Microsoft-Office365-Sharepoint-Api/rpm.json new file mode 100644 index 000000000..77d5010e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Microsoft-Office365-Sharepoint-Api/rpm.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "perl(Text::CSV)", + "perl(DateTime)", + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Microsoft-Office365-Skype-Api/deb.json b/packaging/centreon-plugin-Cloud-Microsoft-Office365-Skype-Api/deb.json new file mode 100644 index 000000000..8c7f62f0d --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Microsoft-Office365-Skype-Api/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libtext-csv-perl", + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Microsoft-Office365-Skype-Api/pkg.json b/packaging/centreon-plugin-Cloud-Microsoft-Office365-Skype-Api/pkg.json new file mode 100644 index 000000000..e72a3c236 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Microsoft-Office365-Skype-Api/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Microsoft-Office365-Skype-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Office 365 Skype for Business using RestAPI", + "plugin_name": "centreon_office365_skype_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/microsoft/office365/custom/graphapi.pm", + "cloud/microsoft/office365/skype/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Microsoft-Office365-Skype-Api/rpm.json b/packaging/centreon-plugin-Cloud-Microsoft-Office365-Skype-Api/rpm.json new file mode 100644 index 000000000..77d5010e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Microsoft-Office365-Skype-Api/rpm.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "perl(Text::CSV)", + "perl(DateTime)", + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Microsoft-Office365-Teams-Api/deb.json b/packaging/centreon-plugin-Cloud-Microsoft-Office365-Teams-Api/deb.json new file mode 100644 index 000000000..8c7f62f0d --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Microsoft-Office365-Teams-Api/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libtext-csv-perl", + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Microsoft-Office365-Teams-Api/pkg.json b/packaging/centreon-plugin-Cloud-Microsoft-Office365-Teams-Api/pkg.json new file mode 100644 index 000000000..fc6e7c2df --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Microsoft-Office365-Teams-Api/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Microsoft-Office365-Teams-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Office 365 Microsoft Teams using RestAPI", + "plugin_name": "centreon_office365_teams_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/microsoft/office365/custom/graphapi.pm", + "cloud/microsoft/office365/teams/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Microsoft-Office365-Teams-Api/rpm.json b/packaging/centreon-plugin-Cloud-Microsoft-Office365-Teams-Api/rpm.json new file mode 100644 index 000000000..77d5010e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Microsoft-Office365-Teams-Api/rpm.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "perl(Text::CSV)", + "perl(DateTime)", + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Microsoft-Office365-Yammer-Api/deb.json b/packaging/centreon-plugin-Cloud-Microsoft-Office365-Yammer-Api/deb.json new file mode 100644 index 000000000..8c7f62f0d --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Microsoft-Office365-Yammer-Api/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libtext-csv-perl", + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Microsoft-Office365-Yammer-Api/pkg.json b/packaging/centreon-plugin-Cloud-Microsoft-Office365-Yammer-Api/pkg.json new file mode 100644 index 000000000..393f5f765 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Microsoft-Office365-Yammer-Api/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Microsoft-Office365-Yammer-Api", + "pkg_summary": "Centreon Plugin to monitor Microsoft Office 365 Yammer using RestAPI", + "plugin_name": "centreon_office365_yammer_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/microsoft/office365/custom/graphapi.pm", + "cloud/microsoft/office365/yammer/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Microsoft-Office365-Yammer-Api/rpm.json b/packaging/centreon-plugin-Cloud-Microsoft-Office365-Yammer-Api/rpm.json new file mode 100644 index 000000000..77d5010e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Microsoft-Office365-Yammer-Api/rpm.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "perl(Text::CSV)", + "perl(DateTime)", + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Ovh-Restapi/deb.json b/packaging/centreon-plugin-Cloud-Ovh-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Ovh-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Cloud-Ovh-Restapi/pkg.json b/packaging/centreon-plugin-Cloud-Ovh-Restapi/pkg.json new file mode 100644 index 000000000..9cbfcb19a --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Ovh-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Ovh-Restapi", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_ovh_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/ovh/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Ovh-Restapi/rpm.json b/packaging/centreon-plugin-Cloud-Ovh-Restapi/rpm.json new file mode 100644 index 000000000..46445546b --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Ovh-Restapi/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Prometheus-Api/deb.json b/packaging/centreon-plugin-Cloud-Prometheus-Api/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Prometheus-Api/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Cloud-Prometheus-Api/pkg.json b/packaging/centreon-plugin-Cloud-Prometheus-Api/pkg.json new file mode 100644 index 000000000..d2e2d97c7 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Prometheus-Api/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Prometheus-Api", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_prometheus_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/prometheus/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Prometheus-Api/rpm.json b/packaging/centreon-plugin-Cloud-Prometheus-Api/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Prometheus-Api/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Cloud-Prometheus-Kubernetes-Api/deb.json b/packaging/centreon-plugin-Cloud-Prometheus-Kubernetes-Api/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Prometheus-Kubernetes-Api/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Cloud-Prometheus-Kubernetes-Api/pkg.json b/packaging/centreon-plugin-Cloud-Prometheus-Kubernetes-Api/pkg.json new file mode 100644 index 000000000..7a1682fd5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Prometheus-Kubernetes-Api/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Prometheus-Kubernetes-Api", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_prometheus_kubernetes_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/prometheus/restapi/custom/", + "cloud/prometheus/direct/kubernetes/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Prometheus-Kubernetes-Api/rpm.json b/packaging/centreon-plugin-Cloud-Prometheus-Kubernetes-Api/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Prometheus-Kubernetes-Api/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Cloud-Prometheus-Node-Exporter-Api/deb.json b/packaging/centreon-plugin-Cloud-Prometheus-Node-Exporter-Api/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Prometheus-Node-Exporter-Api/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Cloud-Prometheus-Node-Exporter-Api/pkg.json b/packaging/centreon-plugin-Cloud-Prometheus-Node-Exporter-Api/pkg.json new file mode 100644 index 000000000..2bfdac86b --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Prometheus-Node-Exporter-Api/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Prometheus-Node-Exporter-Api", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_prometheus_node_exporter_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/prometheus/restapi/custom/", + "cloud/prometheus/exporters/nodeexporter/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Prometheus-Node-Exporter-Api/rpm.json b/packaging/centreon-plugin-Cloud-Prometheus-Node-Exporter-Api/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Prometheus-Node-Exporter-Api/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Cloud-Prometheus-cAdvisor-Api/deb.json b/packaging/centreon-plugin-Cloud-Prometheus-cAdvisor-Api/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Prometheus-cAdvisor-Api/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Cloud-Prometheus-cAdvisor-Api/pkg.json b/packaging/centreon-plugin-Cloud-Prometheus-cAdvisor-Api/pkg.json new file mode 100644 index 000000000..041ec7328 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Prometheus-cAdvisor-Api/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Prometheus-cAdvisor-Api", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_prometheus_cadvisor_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/prometheus/restapi/custom/", + "cloud/prometheus/exporters/cadvisor/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Prometheus-cAdvisor-Api/rpm.json b/packaging/centreon-plugin-Cloud-Prometheus-cAdvisor-Api/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Prometheus-cAdvisor-Api/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Cloud-Vmware-Velocloud-Restapi/deb.json b/packaging/centreon-plugin-Cloud-Vmware-Velocloud-Restapi/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Vmware-Velocloud-Restapi/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Vmware-Velocloud-Restapi/pkg.json b/packaging/centreon-plugin-Cloud-Vmware-Velocloud-Restapi/pkg.json new file mode 100644 index 000000000..cb6f70649 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Vmware-Velocloud-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Cloud-Vmware-Velocloud-Restapi", + "pkg_summary": "Centreon Plugin to monitor VMware VeloCloud solution using VCO RestAPI", + "plugin_name": "centreon_velocloud_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/vmware/velocloud/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-Vmware-Velocloud-Restapi/rpm.json b/packaging/centreon-plugin-Cloud-Vmware-Velocloud-Restapi/rpm.json new file mode 100644 index 000000000..4db4877ce --- /dev/null +++ b/packaging/centreon-plugin-Cloud-Vmware-Velocloud-Restapi/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Cloud-cAdvisor-Api/deb.json b/packaging/centreon-plugin-Cloud-cAdvisor-Api/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-cAdvisor-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Cloud-cAdvisor-Api/pkg.json b/packaging/centreon-plugin-Cloud-cAdvisor-Api/pkg.json new file mode 100644 index 000000000..cfbafb2c0 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-cAdvisor-Api/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Cloud-cAdvisor-Api", + "pkg_summary": "Centreon Plugin to check containers and nodes metrics through cAdvisor API", + "plugin_name": "centreon_cadvisor_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/cadvisor/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Cloud-cAdvisor-Api/rpm.json b/packaging/centreon-plugin-Cloud-cAdvisor-Api/rpm.json new file mode 100644 index 000000000..e9dff7552 --- /dev/null +++ b/packaging/centreon-plugin-Cloud-cAdvisor-Api/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(DateTime)" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Ats-Apc-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Ats-Apc-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Ats-Apc-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Ats-Apc-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Ats-Apc-Snmp/pkg.json new file mode 100644 index 000000000..67997a624 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Ats-Apc-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Ats-Apc-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_ats_apc_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "hardware/ats/apc/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Ats-Apc-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Ats-Apc-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Ats-Apc-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Ats-Eaton-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Ats-Eaton-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Ats-Eaton-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Ats-Eaton-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Ats-Eaton-Snmp/pkg.json new file mode 100644 index 000000000..e2e0d3acb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Ats-Eaton-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Ats-Eaton-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_ats_eaton_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "hardware/ats/eaton/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Ats-Eaton-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Ats-Eaton-Snmp/rpm.json new file mode 100644 index 000000000..14e966306 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Ats-Eaton-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Dell-TL2000-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Dell-TL2000-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Dell-TL2000-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Dell-TL2000-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Dell-TL2000-Snmp/pkg.json new file mode 100644 index 000000000..a17223ae5 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Dell-TL2000-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Dell-TL2000-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_dell_tl2000_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "storage/dell/TL2000/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Dell-TL2000-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Dell-TL2000-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Dell-TL2000-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Device-Safenet-Keysecure-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Device-Safenet-Keysecure-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Device-Safenet-Keysecure-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Device-Safenet-Keysecure-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Device-Safenet-Keysecure-Snmp/pkg.json new file mode 100644 index 000000000..6bdfe3bd2 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Device-Safenet-Keysecure-Snmp/pkg.json @@ -0,0 +1,14 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Device-Safenet-Keysecure-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_safenet_keysecure.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "centreon/common/ingrian/snmp/", + "hardware/devices/safenet/keysecure/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Device-Safenet-Keysecure-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Device-Safenet-Keysecure-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Device-Safenet-Keysecure-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Devices-Abb-Cms700-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Devices-Abb-Cms700-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Abb-Cms700-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Devices-Abb-Cms700-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Devices-Abb-Cms700-Snmp/pkg.json new file mode 100644 index 000000000..4e0e2c2c0 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Abb-Cms700-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Devices-Abb-Cms700-Snmp", + "pkg_summary": "Centreon Plugin to monitor ABB CMS-700 measurements devices using SNMP", + "plugin_name": "centreon_abb_cms700_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "hardware/devices/abb/cms700/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Devices-Abb-Cms700-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Devices-Abb-Cms700-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Abb-Cms700-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Devices-Aeg-Acm-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Devices-Aeg-Acm-Snmp/deb.json new file mode 100644 index 000000000..5d24d64c4 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Aeg-Acm-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Devices-Aeg-Acm-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Devices-Aeg-Acm-Snmp/pkg.json new file mode 100644 index 000000000..0f8bfc438 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Aeg-Acm-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Devices-Aeg-Acm-Snmp", + "pkg_summary": "Centreon Plugin to monitor AEG ACM modules using SNMP", + "plugin_name": "centreon_aeg_acm.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "hardware/devices/aeg/acm/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Devices-Aeg-Acm-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Devices-Aeg-Acm-Snmp/rpm.json new file mode 100644 index 000000000..14e966306 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Aeg-Acm-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Devices-Barco-Cs-Restapi/deb.json b/packaging/centreon-plugin-Hardware-Devices-Barco-Cs-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Barco-Cs-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Hardware-Devices-Barco-Cs-Restapi/pkg.json b/packaging/centreon-plugin-Hardware-Devices-Barco-Cs-Restapi/pkg.json new file mode 100644 index 000000000..869a84f53 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Barco-Cs-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Devices-Barco-Cs-Restapi", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_barco_cs_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "hardware/devices/barco/cs/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Devices-Barco-Cs-Restapi/rpm.json b/packaging/centreon-plugin-Hardware-Devices-Barco-Cs-Restapi/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Barco-Cs-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Hardware-Devices-Camera-Hanwha-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Devices-Camera-Hanwha-Snmp/deb.json new file mode 100644 index 000000000..5d24d64c4 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Camera-Hanwha-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Devices-Camera-Hanwha-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Devices-Camera-Hanwha-Snmp/pkg.json new file mode 100644 index 000000000..ccf89943d --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Camera-Hanwha-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Devices-Camera-Hanwha-Snmp", + "pkg_summary": "Centreon Plugin to monitor Hanwha camera using SNMP", + "plugin_name": "centreon_camera_hanwha_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "hardware/devices/camera/hanwha/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Devices-Camera-Hanwha-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Devices-Camera-Hanwha-Snmp/rpm.json new file mode 100644 index 000000000..14e966306 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Camera-Hanwha-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Devices-Camera-Hikvision-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Devices-Camera-Hikvision-Snmp/deb.json new file mode 100644 index 000000000..675270437 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Camera-Hikvision-Snmp/deb.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "libsnmp-perl", + "libdatetime-perl", + "libnet-ntp-perl" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Devices-Camera-Hikvision-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Devices-Camera-Hikvision-Snmp/pkg.json new file mode 100644 index 000000000..9c3e92dc2 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Camera-Hikvision-Snmp/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Devices-Camera-Hikvision-Snmp", + "pkg_summary": "Centreon Plugin to monitor Hikvision camera using SNMP", + "plugin_name": "centreon_camera_hikvision_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/ntp.pm", + "hardware/devices/camera/hikvision/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Devices-Camera-Hikvision-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Devices-Camera-Hikvision-Snmp/rpm.json new file mode 100644 index 000000000..8927c0ff5 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Camera-Hikvision-Snmp/rpm.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "perl(SNMP)", + "perl(DateTime)", + "perl(Net::NTP)" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Devices-Camera-Mobotix-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Devices-Camera-Mobotix-Snmp/deb.json new file mode 100644 index 000000000..d6332336f --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Camera-Mobotix-Snmp/deb.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "libsnmp-perl", + "libdatetime-perl", + "libnet-ntp-perl" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Devices-Camera-Mobotix-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Devices-Camera-Mobotix-Snmp/pkg.json new file mode 100644 index 000000000..78957f14b --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Camera-Mobotix-Snmp/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Devices-Camera-Mobotix-Snmp", + "pkg_summary": "Centreon Plugin to monitor Mobotix camera using SNMP", + "plugin_name": "centreon_camera_mobotix_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/ntp.pm", + "hardware/devices/camera/mobotix/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Devices-Camera-Mobotix-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Devices-Camera-Mobotix-Snmp/rpm.json new file mode 100644 index 000000000..ee7af3819 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Camera-Mobotix-Snmp/rpm.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "perl(SNMP)", + "perl(DateTime)", + "perl(Net::NTP)" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Devices-Cisco-Ces-Restapi/deb.json b/packaging/centreon-plugin-Hardware-Devices-Cisco-Ces-Restapi/deb.json new file mode 100644 index 000000000..8ee9bc0b9 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Cisco-Ces-Restapi/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libxml-libxml-simple-perl", + "libtime-parsedate-perl" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Devices-Cisco-Ces-Restapi/pkg.json b/packaging/centreon-plugin-Hardware-Devices-Cisco-Ces-Restapi/pkg.json new file mode 100644 index 000000000..f0375c5d8 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Cisco-Ces-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Devices-Cisco-Ces-Restapi", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_cisco_ces_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "hardware/devices/cisco/ces/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Devices-Cisco-Ces-Restapi/rpm.json b/packaging/centreon-plugin-Hardware-Devices-Cisco-Ces-Restapi/rpm.json new file mode 100644 index 000000000..d76778073 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Cisco-Ces-Restapi/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(XML::LibXML::Simple)", + "perl(Date::Parse)" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Devices-Cisco-Cts-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Devices-Cisco-Cts-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Cisco-Cts-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Devices-Cisco-Cts-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Devices-Cisco-Cts-Snmp/pkg.json new file mode 100644 index 000000000..081b55351 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Cisco-Cts-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Devices-Cisco-Cts-Snmp", + "pkg_summary": "Centreon Plugin to monitor Cisco Telepresence System using SNMP", + "plugin_name": "centreon_cisco_cts_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "hardware/devices/cisco/cts/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Devices-Cisco-Cts-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Devices-Cisco-Cts-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Cisco-Cts-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Devices-Eltek-Enexus-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Devices-Eltek-Enexus-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Eltek-Enexus-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Devices-Eltek-Enexus-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Devices-Eltek-Enexus-Snmp/pkg.json new file mode 100644 index 000000000..7733fce45 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Eltek-Enexus-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Devices-Eltek-Enexus-Snmp", + "pkg_summary": "Centreon Plugin to monitor Eltek Enexus measurements devices using SNMP", + "plugin_name": "centreon_eltek_enexus_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "hardware/devices/eltek/enexus/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Devices-Eltek-Enexus-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Devices-Eltek-Enexus-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Eltek-Enexus-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Devices-Gorgy-Ntpserver-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Devices-Gorgy-Ntpserver-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Gorgy-Ntpserver-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Devices-Gorgy-Ntpserver-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Devices-Gorgy-Ntpserver-Snmp/pkg.json new file mode 100644 index 000000000..22fb60092 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Gorgy-Ntpserver-Snmp/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Devices-Gorgy-Ntpserver-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_gorgy_ntpserver.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "hardware/devices/gorgy/ntpserver/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Devices-Gorgy-Ntpserver-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Devices-Gorgy-Ntpserver-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Gorgy-Ntpserver-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Devices-Hikvision-Nvr-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Devices-Hikvision-Nvr-Snmp/deb.json new file mode 100644 index 000000000..5d24d64c4 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Hikvision-Nvr-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Devices-Hikvision-Nvr-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Devices-Hikvision-Nvr-Snmp/pkg.json new file mode 100644 index 000000000..d96c4371c --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Hikvision-Nvr-Snmp/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Devices-Hikvision-Nvr-Snmp", + "pkg_summary": "Centreon Plugin to monitor Hikvision Network Video Recorder using SNMP", + "plugin_name": "centreon_hikvision_nvr_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/uptime.pm", + "hardware/devices/hikvision/nvr/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Devices-Hikvision-Nvr-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Devices-Hikvision-Nvr-Snmp/rpm.json new file mode 100644 index 000000000..14e966306 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Hikvision-Nvr-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Devices-Hms-Ewon-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Devices-Hms-Ewon-Snmp/deb.json new file mode 100644 index 000000000..5d24d64c4 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Hms-Ewon-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Devices-Hms-Ewon-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Devices-Hms-Ewon-Snmp/pkg.json new file mode 100644 index 000000000..2196f6ebd --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Hms-Ewon-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Devices-Hms-Ewon-Snmp", + "pkg_summary": "Centreon Plugin to monitor HMS Ewon using SNMP", + "plugin_name": "centreon_hms_ewon_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "hardware/devices/hms/ewon/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Devices-Hms-Ewon-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Devices-Hms-Ewon-Snmp/rpm.json new file mode 100644 index 000000000..14e966306 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Hms-Ewon-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Devices-Masterclock-Ntp100gps-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Devices-Masterclock-Ntp100gps-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Masterclock-Ntp100gps-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Devices-Masterclock-Ntp100gps-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Devices-Masterclock-Ntp100gps-Snmp/pkg.json new file mode 100644 index 000000000..91188f550 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Masterclock-Ntp100gps-Snmp/pkg.json @@ -0,0 +1,12 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Devices-Masterclock-Ntp100gps-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_masterclock_ntpserver_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/uptime.pm", + "hardware/devices/masterclock/ntp100gps/snmp/" + ], + "custom_pkg_data": "Obsoletes: centreon-plugin-Hardware-Devices-Masterclock-Ntpserver-Snmp" +} diff --git a/packaging/centreon-plugin-Hardware-Devices-Masterclock-Ntp100gps-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Devices-Masterclock-Ntp100gps-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Masterclock-Ntp100gps-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Devices-Nvidia-Gpu-Smi-Ssh/deb.json b/packaging/centreon-plugin-Hardware-Devices-Nvidia-Gpu-Smi-Ssh/deb.json new file mode 100644 index 000000000..c4382abc3 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Nvidia-Gpu-Smi-Ssh/deb.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "libxml-libxml-simple-perl", + "plink", + "libssh-session-perl" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Devices-Nvidia-Gpu-Smi-Ssh/pkg.json b/packaging/centreon-plugin-Hardware-Devices-Nvidia-Gpu-Smi-Ssh/pkg.json new file mode 100644 index 000000000..f52aab941 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Nvidia-Gpu-Smi-Ssh/pkg.json @@ -0,0 +1,12 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Devices-Nvidia-Gpu-Smi-Ssh", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_nvidia_gpu_smi_ssh.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/plugins/script_custom/cli.pm", + "centreon/plugins/backend/ssh/", + "centreon/plugins/ssh.pm", + "hardware/devices/nvidia/gpu/smi/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Devices-Nvidia-Gpu-Smi-Ssh/rpm.json b/packaging/centreon-plugin-Hardware-Devices-Nvidia-Gpu-Smi-Ssh/rpm.json new file mode 100644 index 000000000..664ba07ca --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Nvidia-Gpu-Smi-Ssh/rpm.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "perl(XML::LibXML::Simple)", + "plink", + "perl(Libssh::Session)" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Devices-Pexip-Infinity-Managementapi/deb.json b/packaging/centreon-plugin-Hardware-Devices-Pexip-Infinity-Managementapi/deb.json new file mode 100644 index 000000000..189578563 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Pexip-Infinity-Managementapi/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libtime-parsedate-perl" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Devices-Pexip-Infinity-Managementapi/pkg.json b/packaging/centreon-plugin-Hardware-Devices-Pexip-Infinity-Managementapi/pkg.json new file mode 100644 index 000000000..954e9627b --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Pexip-Infinity-Managementapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Devices-Pexip-Infinity-Managementapi", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_pexip_infinity_managementapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "hardware/devices/pexip/infinity/managementapi/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Devices-Pexip-Infinity-Managementapi/rpm.json b/packaging/centreon-plugin-Hardware-Devices-Pexip-Infinity-Managementapi/rpm.json new file mode 100644 index 000000000..0422faade --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Pexip-Infinity-Managementapi/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(Date::Parse)" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Devices-Polycom-Dma-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Devices-Polycom-Dma-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Polycom-Dma-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Devices-Polycom-Dma-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Devices-Polycom-Dma-Snmp/pkg.json new file mode 100644 index 000000000..c33c27345 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Polycom-Dma-Snmp/pkg.json @@ -0,0 +1,18 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Devices-Polycom-Dma-Snmp", + "pkg_summary": "Centreon Plugin to monitor Polycom DMA Cluster Manager using SNMP", + "plugin_name": "centreon_polycom_dma_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/cpu.pm", + "snmp_standard/mode/cpudetailed.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/loadaverage.pm", + "snmp_standard/mode/memory.pm", + "snmp_standard/mode/storage.pm", + "snmp_standard/mode/swap.pm", + "snmp_standard/mode/uptime.pm", + "hardware/devices/polycom/dma/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Devices-Polycom-Dma-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Devices-Polycom-Dma-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Polycom-Dma-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Devices-Polycom-Groupseries-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Devices-Polycom-Groupseries-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Polycom-Groupseries-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Devices-Polycom-Groupseries-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Devices-Polycom-Groupseries-Snmp/pkg.json new file mode 100644 index 000000000..b078d7058 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Polycom-Groupseries-Snmp/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Devices-Polycom-Groupseries-Snmp", + "pkg_summary": "Centreon Plugin Polycom Groupseries", + "plugin_name": "centreon_polycom_groupseries_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "centreon/common/polycom/endpoint/snmp/", + "hardware/devices/polycom/groupseries/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Devices-Polycom-Groupseries-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Devices-Polycom-Groupseries-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Polycom-Groupseries-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Devices-Polycom-Hdx-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Devices-Polycom-Hdx-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Polycom-Hdx-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Devices-Polycom-Hdx-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Devices-Polycom-Hdx-Snmp/pkg.json new file mode 100644 index 000000000..2051b62aa --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Polycom-Hdx-Snmp/pkg.json @@ -0,0 +1,15 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Devices-Polycom-Hdx-Snmp", + "pkg_summary": "Centreon Plugin to monitor Polycom HDX View Stations devices using SNMP", + "plugin_name": "centreon_polycom_hdx_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/cpudetailed.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/loadaverage.pm", + "snmp_standard/mode/memory.pm", + "snmp_standard/mode/uptime.pm", + "hardware/devices/polycom/hdx/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Devices-Polycom-Hdx-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Devices-Polycom-Hdx-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Polycom-Hdx-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Devices-Polycom-Rprm-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Devices-Polycom-Rprm-Snmp/deb.json new file mode 100644 index 000000000..738588a2d --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Polycom-Rprm-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Devices-Polycom-Rprm-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Devices-Polycom-Rprm-Snmp/pkg.json new file mode 100644 index 000000000..4d2e27ba2 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Polycom-Rprm-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Devices-Polycom-Rprm-Snmp", + "pkg_summary": "Centreon Plugin to monitor Polycom RPRM devices using SNMP", + "plugin_name": "centreon_polycom_rprm_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "hardware/devices/polycom/rprm/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Devices-Polycom-Rprm-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Devices-Polycom-Rprm-Snmp/rpm.json new file mode 100644 index 000000000..6b12c4a52 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Polycom-Rprm-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Devices-Polycom-Trio-Restapi/deb.json b/packaging/centreon-plugin-Hardware-Devices-Polycom-Trio-Restapi/deb.json new file mode 100644 index 000000000..189578563 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Polycom-Trio-Restapi/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libtime-parsedate-perl" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Devices-Polycom-Trio-Restapi/pkg.json b/packaging/centreon-plugin-Hardware-Devices-Polycom-Trio-Restapi/pkg.json new file mode 100644 index 000000000..33d7cacf2 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Polycom-Trio-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Devices-Polycom-Trio-Restapi", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_polycom_trio_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "hardware/devices/polycom/trio/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Devices-Polycom-Trio-Restapi/rpm.json b/packaging/centreon-plugin-Hardware-Devices-Polycom-Trio-Restapi/rpm.json new file mode 100644 index 000000000..0422faade --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Polycom-Trio-Restapi/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(Date::Parse)" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Devices-Timelinkmicro-Tms6001-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Devices-Timelinkmicro-Tms6001-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Timelinkmicro-Tms6001-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Devices-Timelinkmicro-Tms6001-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Devices-Timelinkmicro-Tms6001-Snmp/pkg.json new file mode 100644 index 000000000..e8707ff8d --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Timelinkmicro-Tms6001-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Devices-Timelinkmicro-Tms6001-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_timelinkmicro_tms6001_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "hardware/devices/timelinkmicro/tms6001/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Devices-Timelinkmicro-Tms6001-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Devices-Timelinkmicro-Tms6001-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Timelinkmicro-Tms6001-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Devices-Video-Axis-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Devices-Video-Axis-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Video-Axis-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Devices-Video-Axis-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Devices-Video-Axis-Snmp/pkg.json new file mode 100644 index 000000000..554d125e1 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Video-Axis-Snmp/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Devices-Video-Axis-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_axis_video_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/uptime.pm", + "hardware/devices/video/axis/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Devices-Video-Axis-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Devices-Video-Axis-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Devices-Video-Axis-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Kvm-Adder-Aim-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Kvm-Adder-Aim-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Kvm-Adder-Aim-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Kvm-Adder-Aim-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Kvm-Adder-Aim-Snmp/pkg.json new file mode 100644 index 000000000..9389b4580 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Kvm-Adder-Aim-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Kvm-Adder-Aim-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_kvm_adder_aim_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "hardware/kvm/adder/aim/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Kvm-Adder-Aim-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Kvm-Adder-Aim-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Kvm-Adder-Aim-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Kvm-Avocent-Acs-6000-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Kvm-Avocent-Acs-6000-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Kvm-Avocent-Acs-6000-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Kvm-Avocent-Acs-6000-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Kvm-Avocent-Acs-6000-Snmp/pkg.json new file mode 100644 index 000000000..23621cb06 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Kvm-Avocent-Acs-6000-Snmp/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Kvm-Avocent-Acs-6000-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_kvm_avocent.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/cpudetailed.pm", + "snmp_standard/mode/loadaverage.pm", + "snmp_standard/mode/memory.pm", + "hardware/kvm/avocent/acs/6000/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Kvm-Avocent-Acs-6000-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Kvm-Avocent-Acs-6000-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Kvm-Avocent-Acs-6000-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Pdu-Apc-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Pdu-Apc-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Pdu-Apc-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Pdu-Apc-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Pdu-Apc-Snmp/pkg.json new file mode 100644 index 000000000..ee7df2f1c --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Pdu-Apc-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Pdu-Apc-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_pdu_apc_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "hardware/pdu/apc/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Pdu-Apc-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Pdu-Apc-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Pdu-Apc-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Pdu-Clever-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Pdu-Clever-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Pdu-Clever-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Pdu-Clever-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Pdu-Clever-Snmp/pkg.json new file mode 100644 index 000000000..7bf204860 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Pdu-Clever-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Pdu-Clever-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_pdu_clever_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "hardware/pdu/clever/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Pdu-Clever-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Pdu-Clever-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Pdu-Clever-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Pdu-Cyberpower-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Pdu-Cyberpower-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Pdu-Cyberpower-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Pdu-Cyberpower-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Pdu-Cyberpower-Snmp/pkg.json new file mode 100644 index 000000000..5737338e7 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Pdu-Cyberpower-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Pdu-Cyberpower-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_pdu_cyberpower_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "hardware/pdu/cyberpower/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Pdu-Cyberpower-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Pdu-Cyberpower-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Pdu-Cyberpower-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Pdu-Eaton-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Pdu-Eaton-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Pdu-Eaton-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Pdu-Eaton-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Pdu-Eaton-Snmp/pkg.json new file mode 100644 index 000000000..82f02de4b --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Pdu-Eaton-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Pdu-Eaton-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_pdu_eaton_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "hardware/pdu/eaton/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Pdu-Eaton-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Pdu-Eaton-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Pdu-Eaton-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Pdu-Emerson-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Pdu-Emerson-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Pdu-Emerson-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Pdu-Emerson-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Pdu-Emerson-Snmp/pkg.json new file mode 100644 index 000000000..e567c9973 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Pdu-Emerson-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Pdu-Emerson-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_pdu_emerson_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "hardware/pdu/emerson/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Pdu-Emerson-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Pdu-Emerson-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Pdu-Emerson-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Pdu-Gude-Epc-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Pdu-Gude-Epc-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Pdu-Gude-Epc-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Pdu-Gude-Epc-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Pdu-Gude-Epc-Snmp/pkg.json new file mode 100644 index 000000000..00e11b2a1 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Pdu-Gude-Epc-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Pdu-Gude-Epc-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_pdu_gude_epc_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "hardware/pdu/gude/epc/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Pdu-Gude-Epc-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Pdu-Gude-Epc-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Pdu-Gude-Epc-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Pdu-Raritan-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Pdu-Raritan-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Pdu-Raritan-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Pdu-Raritan-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Pdu-Raritan-Snmp/pkg.json new file mode 100644 index 000000000..d6d1f5372 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Pdu-Raritan-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Pdu-Raritan-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_pdu_raritan_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "hardware/pdu/raritan/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Pdu-Raritan-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Pdu-Raritan-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Pdu-Raritan-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Pdu-Schleifenbauer-Gateway-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Pdu-Schleifenbauer-Gateway-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Pdu-Schleifenbauer-Gateway-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Pdu-Schleifenbauer-Gateway-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Pdu-Schleifenbauer-Gateway-Snmp/pkg.json new file mode 100644 index 000000000..a8959f2d9 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Pdu-Schleifenbauer-Gateway-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Pdu-Schleifenbauer-Gateway-Snmp", + "pkg_summary": "Centreon Plugin Schleifenbauer Gateway", + "plugin_name": "centreon_pdu_schleifenbauer_gateway_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "hardware/pdu/schleifenbauer/gateway/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Pdu-Schleifenbauer-Gateway-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Pdu-Schleifenbauer-Gateway-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Pdu-Schleifenbauer-Gateway-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Printers-Generic-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Printers-Generic-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Printers-Generic-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Printers-Generic-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Printers-Generic-Snmp/pkg.json new file mode 100644 index 000000000..3278dc03a --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Printers-Generic-Snmp/pkg.json @@ -0,0 +1,12 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Printers-Generic-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_printers_generic_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/hardwaredevice.pm", + "snmp_standard/mode/printererror.pm", + "hardware/printers/standard/rfc3805/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Printers-Generic-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Printers-Generic-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Printers-Generic-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Sensors-Akcp-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Sensors-Akcp-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Sensors-Akcp-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Sensors-Akcp-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Sensors-Akcp-Snmp/pkg.json new file mode 100644 index 000000000..f97397830 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Sensors-Akcp-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Sensors-Akcp-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_akcp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "hardware/sensors/akcp/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Sensors-Akcp-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Sensors-Akcp-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Sensors-Akcp-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Sensors-Apc-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Sensors-Apc-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Sensors-Apc-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Sensors-Apc-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Sensors-Apc-Snmp/pkg.json new file mode 100644 index 000000000..a562da66d --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Sensors-Apc-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Sensors-Apc-Snmp", + "pkg_summary": "Centreon Plugin Sensor APC SNMP", + "plugin_name": "centreon_sensors_apc_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "hardware/sensors/apc/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Sensors-Apc-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Sensors-Apc-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Sensors-Apc-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Sensors-Comet-P8000-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Sensors-Comet-P8000-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Sensors-Comet-P8000-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Sensors-Comet-P8000-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Sensors-Comet-P8000-Snmp/pkg.json new file mode 100644 index 000000000..3a8488ceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Sensors-Comet-P8000-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Sensors-Comet-P8000-Snmp", + "pkg_summary": "Centreon Plugin Sensor Comet P8000 SNMP", + "plugin_name": "centreon_sensors_comet_p8000_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "hardware/sensors/comet/p8000/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Sensors-Comet-P8000-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Sensors-Comet-P8000-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Sensors-Comet-P8000-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Sensors-Geist-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Sensors-Geist-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Sensors-Geist-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Sensors-Geist-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Sensors-Geist-Snmp/pkg.json new file mode 100644 index 000000000..d85128769 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Sensors-Geist-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Sensors-Geist-Snmp", + "pkg_summary": "Centreon Plugin Sensor Geist SNMP", + "plugin_name": "centreon_sensors_geist_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "hardware/sensors/geist/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Sensors-Geist-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Sensors-Geist-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Sensors-Geist-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Sensors-Hwgste-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Sensors-Hwgste-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Sensors-Hwgste-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Sensors-Hwgste-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Sensors-Hwgste-Snmp/pkg.json new file mode 100644 index 000000000..adbb02e75 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Sensors-Hwgste-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Sensors-Hwgste-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_hwgste.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "hardware/sensors/hwgste/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Sensors-Hwgste-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Sensors-Hwgste-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Sensors-Hwgste-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Sensors-Jacarta-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Sensors-Jacarta-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Sensors-Jacarta-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Sensors-Jacarta-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Sensors-Jacarta-Snmp/pkg.json new file mode 100644 index 000000000..a7073a3fe --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Sensors-Jacarta-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Sensors-Jacarta-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_jacarta.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "hardware/sensors/jacarta/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Sensors-Jacarta-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Sensors-Jacarta-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Sensors-Jacarta-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Sensors-Netbotz-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Sensors-Netbotz-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Sensors-Netbotz-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Sensors-Netbotz-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Sensors-Netbotz-Snmp/pkg.json new file mode 100644 index 000000000..ba3b1650f --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Sensors-Netbotz-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Sensors-Netbotz-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_netbotz.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "hardware/sensors/netbotz/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Sensors-Netbotz-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Sensors-Netbotz-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Sensors-Netbotz-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Sensors-Sensorip-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Sensors-Sensorip-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Sensors-Sensorip-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Sensors-Sensorip-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Sensors-Sensorip-Snmp/pkg.json new file mode 100644 index 000000000..1e9e7cb03 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Sensors-Sensorip-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Sensors-Sensorip-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_sensorip.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "hardware/sensors/sensorip/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Sensors-Sensorip-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Sensors-Sensorip-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Sensors-Sensorip-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Sensors-Sensormetrix-Em01-Web/deb.json b/packaging/centreon-plugin-Hardware-Sensors-Sensormetrix-Em01-Web/deb.json new file mode 100644 index 000000000..e95a08119 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Sensors-Sensormetrix-Em01-Web/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libjson-perl", + "libxml-xpath-perl" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Sensors-Sensormetrix-Em01-Web/pkg.json b/packaging/centreon-plugin-Hardware-Sensors-Sensormetrix-Em01-Web/pkg.json new file mode 100644 index 000000000..e5063d182 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Sensors-Sensormetrix-Em01-Web/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Sensors-Sensormetrix-Em01-Web", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_sensormetrix.pl", + "files": [ + "centreon/plugins/script_simple.pm", + "hardware/sensors/sensormetrix/em01/web/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Sensors-Sensormetrix-Em01-Web/rpm.json b/packaging/centreon-plugin-Hardware-Sensors-Sensormetrix-Em01-Web/rpm.json new file mode 100644 index 000000000..ea3add7a1 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Sensors-Sensormetrix-Em01-Web/rpm.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "perl(JSON)", + "perl(Time::HiRes)", + "perl(XML::XPath)" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Sensors-Serverscheck-Sensorgateway-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Sensors-Serverscheck-Sensorgateway-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Sensors-Serverscheck-Sensorgateway-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Sensors-Serverscheck-Sensorgateway-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Sensors-Serverscheck-Sensorgateway-Snmp/pkg.json new file mode 100644 index 000000000..b815d6e68 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Sensors-Serverscheck-Sensorgateway-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Sensors-Serverscheck-Sensorgateway-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_sensorgateway.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "hardware/sensors/serverscheck/sensorgateway/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Sensors-Serverscheck-Sensorgateway-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Sensors-Serverscheck-Sensorgateway-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Sensors-Serverscheck-Sensorgateway-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Servers-Cisco-Ucs-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Servers-Cisco-Ucs-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Cisco-Ucs-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Servers-Cisco-Ucs-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Servers-Cisco-Ucs-Snmp/pkg.json new file mode 100644 index 000000000..89ca60dfa --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Cisco-Ucs-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Servers-Cisco-Ucs-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_cisco_ucs.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "hardware/server/cisco/ucs/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Servers-Cisco-Ucs-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Servers-Cisco-Ucs-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Cisco-Ucs-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Servers-Dell-Cmc-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Servers-Dell-Cmc-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Dell-Cmc-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Servers-Dell-Cmc-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Servers-Dell-Cmc-Snmp/pkg.json new file mode 100644 index 000000000..2dc2c691a --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Dell-Cmc-Snmp/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Servers-Dell-Cmc-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_dell_cmc.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/uptime.pm", + "hardware/server/dell/cmc/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Servers-Dell-Cmc-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Servers-Dell-Cmc-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Dell-Cmc-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Servers-Dell-IDrac-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Servers-Dell-IDrac-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Dell-IDrac-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Servers-Dell-IDrac-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Servers-Dell-IDrac-Snmp/pkg.json new file mode 100644 index 000000000..c439687d1 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Dell-IDrac-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Servers-Dell-IDrac-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_dell_idrac.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "hardware/server/dell/idrac/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Servers-Dell-IDrac-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Servers-Dell-IDrac-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Dell-IDrac-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Servers-Dell-Omem-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Servers-Dell-Omem-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Dell-Omem-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Servers-Dell-Omem-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Servers-Dell-Omem-Snmp/pkg.json new file mode 100644 index 000000000..de4272e0e --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Dell-Omem-Snmp/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Servers-Dell-Omem-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_dell_omem_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/uptime.pm", + "hardware/server/dell/omem/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Servers-Dell-Omem-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Servers-Dell-Omem-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Dell-Omem-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Servers-Dell-Openmanage-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Servers-Dell-Openmanage-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Dell-Openmanage-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Servers-Dell-Openmanage-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Servers-Dell-Openmanage-Snmp/pkg.json new file mode 100644 index 000000000..61ef31b70 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Dell-Openmanage-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Servers-Dell-Openmanage-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_dell_openmanage_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "hardware/server/dell/openmanage/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Servers-Dell-Openmanage-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Servers-Dell-Openmanage-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Dell-Openmanage-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Servers-Dell-Vxm-Restapi/deb.json b/packaging/centreon-plugin-Hardware-Servers-Dell-Vxm-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Dell-Vxm-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Hardware-Servers-Dell-Vxm-Restapi/pkg.json b/packaging/centreon-plugin-Hardware-Servers-Dell-Vxm-Restapi/pkg.json new file mode 100644 index 000000000..57a885ac1 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Dell-Vxm-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Servers-Dell-Vxm-Restapi", + "pkg_summary": "Centreon Plugin to monitor VxRail Manager using RestAPI", + "plugin_name": "centreon_dell_vxm_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "hardware/server/dell/vxm/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Servers-Dell-Vxm-Restapi/rpm.json b/packaging/centreon-plugin-Hardware-Servers-Dell-Vxm-Restapi/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Dell-Vxm-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Hardware-Servers-Fujitsu-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Servers-Fujitsu-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Fujitsu-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Servers-Fujitsu-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Servers-Fujitsu-Snmp/pkg.json new file mode 100644 index 000000000..94b0d2807 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Fujitsu-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Servers-Fujitsu-Snmp", + "pkg_summary": "Centreon Plugin Fujitsu SNMP", + "plugin_name": "centreon_fujitsu_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "hardware/server/fujitsu/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Servers-Fujitsu-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Servers-Fujitsu-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Fujitsu-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Servers-Hp-Blade-Chassis-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Servers-Hp-Blade-Chassis-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Hp-Blade-Chassis-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Servers-Hp-Blade-Chassis-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Servers-Hp-Blade-Chassis-Snmp/pkg.json new file mode 100644 index 000000000..867642454 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Hp-Blade-Chassis-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Servers-Hp-Blade-Chassis-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_hp_bladechassis.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "hardware/server/hp/bladechassis/snmp" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Servers-Hp-Blade-Chassis-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Servers-Hp-Blade-Chassis-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Hp-Blade-Chassis-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Servers-Hp-Ilo-Restapi/deb.json b/packaging/centreon-plugin-Hardware-Servers-Hp-Ilo-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Hp-Ilo-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Hardware-Servers-Hp-Ilo-Restapi/pkg.json b/packaging/centreon-plugin-Hardware-Servers-Hp-Ilo-Restapi/pkg.json new file mode 100644 index 000000000..f93d6a06c --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Hp-Ilo-Restapi/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Servers-Hp-Ilo-Restapi", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_hp_ilo_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/common/redfish/restapi/", + "hardware/server/hp/ilo/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Servers-Hp-Ilo-Restapi/rpm.json b/packaging/centreon-plugin-Hardware-Servers-Hp-Ilo-Restapi/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Hp-Ilo-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Hardware-Servers-Hp-Ilo-Xmlapi/deb.json b/packaging/centreon-plugin-Hardware-Servers-Hp-Ilo-Xmlapi/deb.json new file mode 100644 index 000000000..49a172692 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Hp-Ilo-Xmlapi/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libxml-simple-perl" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Servers-Hp-Ilo-Xmlapi/pkg.json b/packaging/centreon-plugin-Hardware-Servers-Hp-Ilo-Xmlapi/pkg.json new file mode 100644 index 000000000..419092153 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Hp-Ilo-Xmlapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Servers-Hp-Ilo-Xmlapi", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_hp_ilo_xmlapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "hardware/server/hp/ilo/xmlapi/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Servers-Hp-Ilo-Xmlapi/rpm.json b/packaging/centreon-plugin-Hardware-Servers-Hp-Ilo-Xmlapi/rpm.json new file mode 100644 index 000000000..c48ecbe12 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Hp-Ilo-Xmlapi/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(XML::Simple)" + ], + "custom_pkg_data": "Obsoletes: centreon-plugin-Hardware-Servers-Hp-Ilo-Xmlapii" +} diff --git a/packaging/centreon-plugin-Hardware-Servers-Hp-Oneview-Restapi/deb.json b/packaging/centreon-plugin-Hardware-Servers-Hp-Oneview-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Hp-Oneview-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Hardware-Servers-Hp-Oneview-Restapi/pkg.json b/packaging/centreon-plugin-Hardware-Servers-Hp-Oneview-Restapi/pkg.json new file mode 100644 index 000000000..c4a2cd1aa --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Hp-Oneview-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Servers-Hp-Oneview-Restapi", + "pkg_summary": "Centreon Plugin to monitor HP OneView using RestAPI", + "plugin_name": "centreon_hp_oneview_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "hardware/server/hp/oneview/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Servers-Hp-Oneview-Restapi/rpm.json b/packaging/centreon-plugin-Hardware-Servers-Hp-Oneview-Restapi/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Hp-Oneview-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Hardware-Servers-Hp-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Servers-Hp-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Hp-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Servers-Hp-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Servers-Hp-Snmp/pkg.json new file mode 100644 index 000000000..c765aa9fd --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Hp-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Servers-Hp-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_hp_proliant.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "hardware/server/hp/proliant/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Servers-Hp-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Servers-Hp-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Hp-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Servers-Huawei-Hmm-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Servers-Huawei-Hmm-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Huawei-Hmm-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Servers-Huawei-Hmm-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Servers-Huawei-Hmm-Snmp/pkg.json new file mode 100644 index 000000000..cb98b6c01 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Huawei-Hmm-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Servers-Huawei-Hmm-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_huawei_hmm_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "hardware/server/huawei/hmm/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Servers-Huawei-Hmm-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Servers-Huawei-Hmm-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Huawei-Hmm-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Servers-Huawei-Ibmc-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Servers-Huawei-Ibmc-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Huawei-Ibmc-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Servers-Huawei-Ibmc-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Servers-Huawei-Ibmc-Snmp/pkg.json new file mode 100644 index 000000000..0d4e13076 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Huawei-Ibmc-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Servers-Huawei-Ibmc-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_huawei_ibmc_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "hardware/server/huawei/ibmc/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Servers-Huawei-Ibmc-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Servers-Huawei-Ibmc-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Huawei-Ibmc-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Servers-Ibm-Bladecenter-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Servers-Ibm-Bladecenter-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Ibm-Bladecenter-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Servers-Ibm-Bladecenter-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Servers-Ibm-Bladecenter-Snmp/pkg.json new file mode 100644 index 000000000..882fa4f61 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Ibm-Bladecenter-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Servers-Ibm-Bladecenter-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_ibm_bladecenter.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "hardware/server/ibm/bladecenter/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Servers-Ibm-Bladecenter-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Servers-Ibm-Bladecenter-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Ibm-Bladecenter-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Servers-Ibm-Hmc-Ssh/deb.json b/packaging/centreon-plugin-Hardware-Servers-Ibm-Hmc-Ssh/deb.json new file mode 100644 index 000000000..291988004 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Ibm-Hmc-Ssh/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "plink", + "libssh-session-perl" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Servers-Ibm-Hmc-Ssh/pkg.json b/packaging/centreon-plugin-Hardware-Servers-Ibm-Hmc-Ssh/pkg.json new file mode 100644 index 000000000..fffd70d4d --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Ibm-Hmc-Ssh/pkg.json @@ -0,0 +1,12 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Servers-Ibm-Hmc-Ssh", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_ibm_hmc_ssh.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/plugins/script_custom/cli.pm", + "centreon/plugins/backend/ssh/", + "centreon/plugins/ssh.pm", + "hardware/server/ibm/hmc/ssh/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Servers-Ibm-Hmc-Ssh/rpm.json b/packaging/centreon-plugin-Hardware-Servers-Ibm-Hmc-Ssh/rpm.json new file mode 100644 index 000000000..48567831d --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Ibm-Hmc-Ssh/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "plink", + "perl(Libssh::Session)" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Servers-Ibm-Imm-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Servers-Ibm-Imm-Snmp/deb.json new file mode 100644 index 000000000..d94e32d22 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Ibm-Imm-Snmp/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libsnmp-perl", + "libdatetime-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Servers-Ibm-Imm-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Servers-Ibm-Imm-Snmp/pkg.json new file mode 100644 index 000000000..ff1fbfbce --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Ibm-Imm-Snmp/pkg.json @@ -0,0 +1,12 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Servers-Ibm-Imm-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_ibm_imm.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "hardware/server/ibm/mgmt_cards/imm/snmp/", + "snmp_standard/mode/ntp.pm" + ], + "custom_pkg_data": "Obsoletes: centreon-plugin-Hardware-servers-ibm-imm-snmp" +} diff --git a/packaging/centreon-plugin-Hardware-Servers-Ibm-Imm-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Servers-Ibm-Imm-Snmp/rpm.json new file mode 100644 index 000000000..d4922ea47 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Ibm-Imm-Snmp/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(SNMP)", + "perl(DateTime)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Servers-Lenovo-Xcc-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Servers-Lenovo-Xcc-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Lenovo-Xcc-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Servers-Lenovo-Xcc-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Servers-Lenovo-Xcc-Snmp/pkg.json new file mode 100644 index 000000000..452833759 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Lenovo-Xcc-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Servers-Lenovo-Xcc-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_lenovo_xcc_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "hardware/server/lenovo/xcc/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Servers-Lenovo-Xcc-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Servers-Lenovo-Xcc-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Lenovo-Xcc-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Servers-Sun-Mgmtcards/deb.json b/packaging/centreon-plugin-Hardware-Servers-Sun-Mgmtcards/deb.json new file mode 100644 index 000000000..986b0c0dc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Sun-Mgmtcards/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libnet-telnet-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Servers-Sun-Mgmtcards/pkg.json b/packaging/centreon-plugin-Hardware-Servers-Sun-Mgmtcards/pkg.json new file mode 100644 index 000000000..1f31a017f --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Sun-Mgmtcards/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Servers-Sun-Mgmtcards", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_sun_mgmtcards.pl", + "files": [ + "centreon/plugins/script_simple.pm", + "hardware/server/sun/mgmt_cards/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Servers-Sun-Mgmtcards/rpm.json b/packaging/centreon-plugin-Hardware-Servers-Sun-Mgmtcards/rpm.json new file mode 100644 index 000000000..a0b6267d8 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Sun-Mgmtcards/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(Net::Telnet)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Servers-Sun-Mseries-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Servers-Sun-Mseries-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Sun-Mseries-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Servers-Sun-Mseries-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Servers-Sun-Mseries-Snmp/pkg.json new file mode 100644 index 000000000..ac9d1bd89 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Sun-Mseries-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Servers-Sun-Mseries-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_sun_mseries.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "hardware/server/sun/mseries/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Servers-Sun-Mseries-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Servers-Sun-Mseries-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Sun-Mseries-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Servers-Sun-Sfxxk-Pssh/deb.json b/packaging/centreon-plugin-Hardware-Servers-Sun-Sfxxk-Pssh/deb.json new file mode 100644 index 000000000..0d141ee0d --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Sun-Sfxxk-Pssh/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libssh-session-perl", + "plink" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Servers-Sun-Sfxxk-Pssh/pkg.json b/packaging/centreon-plugin-Hardware-Servers-Sun-Sfxxk-Pssh/pkg.json new file mode 100644 index 000000000..429b63f91 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Sun-Sfxxk-Pssh/pkg.json @@ -0,0 +1,12 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Servers-Sun-Sfxxk-Pssh", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_sun_sfxxk.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/plugins/script_custom/cli.pm", + "centreon/plugins/backend/ssh/", + "centreon/plugins/ssh.pm", + "hardware/server/sun/sfxxk/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Servers-Sun-Sfxxk-Pssh/rpm.json b/packaging/centreon-plugin-Hardware-Servers-Sun-Sfxxk-Pssh/rpm.json new file mode 100644 index 000000000..fb54a67a9 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Sun-Sfxxk-Pssh/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(Libssh::Session)", + "plink" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Servers-Supermicro-Bmc-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Servers-Supermicro-Bmc-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Supermicro-Bmc-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Servers-Supermicro-Bmc-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Servers-Supermicro-Bmc-Snmp/pkg.json new file mode 100644 index 000000000..d4a4d03fb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Supermicro-Bmc-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Servers-Supermicro-Bmc-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_supermicro_bmc_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "hardware/server/supermicro/bmc/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Servers-Supermicro-Bmc-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Servers-Supermicro-Bmc-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Supermicro-Bmc-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Servers-Supermicro-Superdoctor-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Servers-Supermicro-Superdoctor-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Supermicro-Superdoctor-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Servers-Supermicro-Superdoctor-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Servers-Supermicro-Superdoctor-Snmp/pkg.json new file mode 100644 index 000000000..2e26de350 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Supermicro-Superdoctor-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Servers-Supermicro-Superdoctor-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_supermicro_superdoctor_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "hardware/server/supermicro/superdoctor/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Servers-Supermicro-Superdoctor-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Servers-Supermicro-Superdoctor-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Supermicro-Superdoctor-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Servers-Xfusion-Ibmc-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Servers-Xfusion-Ibmc-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Xfusion-Ibmc-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Servers-Xfusion-Ibmc-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Servers-Xfusion-Ibmc-Snmp/pkg.json new file mode 100644 index 000000000..572abe095 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Xfusion-Ibmc-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Servers-Xfusion-Ibmc-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_xfusion_ibmc_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "hardware/server/xfusion/ibmc/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Servers-Xfusion-Ibmc-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Servers-Xfusion-Ibmc-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Servers-Xfusion-Ibmc-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Adic-Tape-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Storage-Adic-Tape-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Adic-Tape-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Adic-Tape-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Adic-Tape-Snmp/pkg.json new file mode 100644 index 000000000..31b0c6eff --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Adic-Tape-Snmp/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Adic-Tape-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_adic_tape_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "centreon/common/adic/tape/snmp/", + "storage/adic/tape/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Adic-Tape-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Adic-Tape-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Adic-Tape-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Avid-Isis-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Storage-Avid-Isis-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Avid-Isis-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Avid-Isis-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Avid-Isis-Snmp/pkg.json new file mode 100644 index 000000000..020949180 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Avid-Isis-Snmp/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Avid-Isis-Snmp", + "pkg_summary": "Centreon Plugin to monitor Avid ISIS storage appliances using SNMP", + "plugin_name": "centreon_avid_isis_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "storage/avid/isis/snmp/", + "centreon/common/broadcom/megaraid/snmp" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Avid-Isis-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Avid-Isis-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Avid-Isis-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Bdt-Multistak-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Storage-Bdt-Multistak-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Bdt-Multistak-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Bdt-Multistak-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Bdt-Multistak-Snmp/pkg.json new file mode 100644 index 000000000..4a476e164 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Bdt-Multistak-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Bdt-Multistak-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_bdt_multistak_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "storage/bdt/multistak/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Bdt-Multistak-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Bdt-Multistak-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Bdt-Multistak-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Buffalo-Terastation-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Storage-Buffalo-Terastation-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Buffalo-Terastation-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Buffalo-Terastation-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Buffalo-Terastation-Snmp/pkg.json new file mode 100644 index 000000000..dbfa3f132 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Buffalo-Terastation-Snmp/pkg.json @@ -0,0 +1,16 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Buffalo-Terastation-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_buffalo_terastation_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/cpudetailed.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/loadaverage.pm", + "snmp_standard/mode/memory.pm", + "storage/buffalo/terastation/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Buffalo-Terastation-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Buffalo-Terastation-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Buffalo-Terastation-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Dell-Compellent-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Storage-Dell-Compellent-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Dell-Compellent-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Dell-Compellent-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Dell-Compellent-Snmp/pkg.json new file mode 100644 index 000000000..0e759abf3 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Dell-Compellent-Snmp/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Dell-Compellent-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_dell_compellent.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "storage/dell/compellent/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Dell-Compellent-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Dell-Compellent-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Dell-Compellent-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Dell-Equallogic-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Storage-Dell-Equallogic-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Dell-Equallogic-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Dell-Equallogic-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Dell-Equallogic-Snmp/pkg.json new file mode 100644 index 000000000..41b59ab5c --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Dell-Equallogic-Snmp/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Dell-Equallogic-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_dell-equallogic.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "storage/dell/equallogic/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Dell-Equallogic-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Dell-Equallogic-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Dell-Equallogic-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Dell-Fluidfs-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Storage-Dell-Fluidfs-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Dell-Fluidfs-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Dell-Fluidfs-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Dell-Fluidfs-Snmp/pkg.json new file mode 100644 index 000000000..815d286c7 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Dell-Fluidfs-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Dell-Fluidfs-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_dell_fluidfs.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "storage/dell/fluidfs/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Dell-Fluidfs-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Dell-Fluidfs-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Dell-Fluidfs-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Dell-Md3000-Smcli/deb.json b/packaging/centreon-plugin-Hardware-Storage-Dell-Md3000-Smcli/deb.json new file mode 100644 index 000000000..eab71629b --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Dell-Md3000-Smcli/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Dell-Md3000-Smcli/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Dell-Md3000-Smcli/pkg.json new file mode 100644 index 000000000..41fe9f293 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Dell-Md3000-Smcli/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Dell-Md3000-Smcli", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_dell_md3000.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/common/smcli/", + "storage/dell/MD3000/cli/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Dell-Md3000-Smcli/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Dell-Md3000-Smcli/rpm.json new file mode 100644 index 000000000..eab71629b --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Dell-Md3000-Smcli/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Dell-Me4-Restapi/deb.json b/packaging/centreon-plugin-Hardware-Storage-Dell-Me4-Restapi/deb.json new file mode 100644 index 000000000..1b550c7cf --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Dell-Me4-Restapi/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdigest-sha-perl" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Dell-Me4-Restapi/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Dell-Me4-Restapi/pkg.json new file mode 100644 index 000000000..48c926786 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Dell-Me4-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Dell-Me4-Restapi", + "pkg_summary": "Centreon Plugin Dell Me4 Rest API", + "plugin_name": "centreon_dell_me4_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "storage/dell/me4/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Dell-Me4-Restapi/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Dell-Me4-Restapi/rpm.json new file mode 100644 index 000000000..46445546b --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Dell-Me4-Restapi/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Dell-Ml6000-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Storage-Dell-Ml6000-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Dell-Ml6000-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Dell-Ml6000-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Dell-Ml6000-Snmp/pkg.json new file mode 100644 index 000000000..6d59a1f74 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Dell-Ml6000-Snmp/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Dell-Ml6000-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_dell_ml6000.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "centreon/common/adic/tape/snmp/", + "storage/dell/ml6000/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Dell-Ml6000-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Dell-Ml6000-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Dell-Ml6000-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Dell-Powerstore-Restapi/deb.json b/packaging/centreon-plugin-Hardware-Storage-Dell-Powerstore-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Dell-Powerstore-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Dell-Powerstore-Restapi/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Dell-Powerstore-Restapi/pkg.json new file mode 100644 index 000000000..0a47a9b60 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Dell-Powerstore-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Dell-Powerstore-Restapi", + "pkg_summary": "Centreon Plugin Dell PowerStore Rest API", + "plugin_name": "centreon_dell_powerstore_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "storage/dell/powerstore/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Dell-Powerstore-Restapi/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Dell-Powerstore-Restapi/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Dell-Powerstore-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Emc-Celerra-Ssh/deb.json b/packaging/centreon-plugin-Hardware-Storage-Emc-Celerra-Ssh/deb.json new file mode 100644 index 000000000..21f204f89 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Emc-Celerra-Ssh/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "plink", + "libssh-session-perl" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Emc-Celerra-Ssh/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Emc-Celerra-Ssh/pkg.json new file mode 100644 index 000000000..91a2069a5 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Emc-Celerra-Ssh/pkg.json @@ -0,0 +1,12 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Emc-Celerra-Ssh", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_emc_celerra_local.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/plugins/script_custom/cli.pm", + "centreon/plugins/backend/ssh/", + "centreon/plugins/ssh.pm", + "storage/emc/celerra/local/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Emc-Celerra-Ssh/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Emc-Celerra-Ssh/rpm.json new file mode 100644 index 000000000..805085f38 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Emc-Celerra-Ssh/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "plink", + "perl(Libssh::Session)" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Emc-Clariion-Navisphere/deb.json b/packaging/centreon-plugin-Hardware-Storage-Emc-Clariion-Navisphere/deb.json new file mode 100644 index 000000000..21f204f89 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Emc-Clariion-Navisphere/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "plink", + "libssh-session-perl" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Emc-Clariion-Navisphere/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Emc-Clariion-Navisphere/pkg.json new file mode 100644 index 000000000..793b2d836 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Emc-Clariion-Navisphere/pkg.json @@ -0,0 +1,12 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Emc-Clariion-Navisphere", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_emc_clariion.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/plugins/backend/ssh/", + "centreon/plugins/ssh.pm", + "centreon/common/emc/navisphere/", + "storage/emc/clariion/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Emc-Clariion-Navisphere/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Emc-Clariion-Navisphere/rpm.json new file mode 100644 index 000000000..60fcdb79d --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Emc-Clariion-Navisphere/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "plink", + "perl(Libssh::Session)" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Emc-Datadomain-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Storage-Emc-Datadomain-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Emc-Datadomain-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Emc-Datadomain-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Emc-Datadomain-Snmp/pkg.json new file mode 100644 index 000000000..6159acce7 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Emc-Datadomain-Snmp/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Emc-Datadomain-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_emc_datadomain.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "storage/emc/DataDomain/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Emc-Datadomain-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Emc-Datadomain-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Emc-Datadomain-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Emc-Isilon-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Storage-Emc-Isilon-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Emc-Isilon-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Emc-Isilon-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Emc-Isilon-Snmp/pkg.json new file mode 100644 index 000000000..6252b1202 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Emc-Isilon-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Emc-Isilon-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_emc_isilon.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "storage/emc/isilon/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Emc-Isilon-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Emc-Isilon-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Emc-Isilon-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Emc-Unisphere-Restapi/deb.json b/packaging/centreon-plugin-Hardware-Storage-Emc-Unisphere-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Emc-Unisphere-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Emc-Unisphere-Restapi/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Emc-Unisphere-Restapi/pkg.json new file mode 100644 index 000000000..e3efad87d --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Emc-Unisphere-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Emc-Unisphere-Restapi", + "pkg_summary": "Centreon Plugin EMC Unisphere Rest API", + "plugin_name": "centreon_emc_unisphere_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "storage/emc/unisphere/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Emc-Unisphere-Restapi/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Emc-Unisphere-Restapi/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Emc-Unisphere-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Emc-Vplex-Restapi/deb.json b/packaging/centreon-plugin-Hardware-Storage-Emc-Vplex-Restapi/deb.json new file mode 100644 index 000000000..540c269f3 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Emc-Vplex-Restapi/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libjson-perl" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Emc-Vplex-Restapi/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Emc-Vplex-Restapi/pkg.json new file mode 100644 index 000000000..39c1edb17 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Emc-Vplex-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Emc-Vplex-Restapi", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_emc_vplex.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "storage/emc/vplex/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Emc-Vplex-Restapi/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Emc-Vplex-Restapi/rpm.json new file mode 100644 index 000000000..186961460 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Emc-Vplex-Restapi/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(JSON)" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Emc-Xtremio-Restapi/deb.json b/packaging/centreon-plugin-Hardware-Storage-Emc-Xtremio-Restapi/deb.json new file mode 100644 index 000000000..540c269f3 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Emc-Xtremio-Restapi/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libjson-perl" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Emc-Xtremio-Restapi/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Emc-Xtremio-Restapi/pkg.json new file mode 100644 index 000000000..495ab201e --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Emc-Xtremio-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Emc-Xtremio-Restapi", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_emc_xtremio.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "storage/emc/xtremio/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Emc-Xtremio-Restapi/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Emc-Xtremio-Restapi/rpm.json new file mode 100644 index 000000000..186961460 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Emc-Xtremio-Restapi/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(JSON)" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Exagrid-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Storage-Exagrid-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Exagrid-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Exagrid-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Exagrid-Snmp/pkg.json new file mode 100644 index 000000000..3fc8d910b --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Exagrid-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Exagrid-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_exagrid_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "storage/exagrid/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Exagrid-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Exagrid-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Exagrid-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Fujitsu-Eternus-Dx-Ssh/deb.json b/packaging/centreon-plugin-Hardware-Storage-Fujitsu-Eternus-Dx-Ssh/deb.json new file mode 100644 index 000000000..21f204f89 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Fujitsu-Eternus-Dx-Ssh/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "plink", + "libssh-session-perl" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Fujitsu-Eternus-Dx-Ssh/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Fujitsu-Eternus-Dx-Ssh/pkg.json new file mode 100644 index 000000000..9a045b094 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Fujitsu-Eternus-Dx-Ssh/pkg.json @@ -0,0 +1,12 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Fujitsu-Eternus-Dx-Ssh", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_fujitsu_eternus_dx.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/plugins/script_custom/cli.pm", + "centreon/plugins/backend/ssh/", + "centreon/plugins/ssh.pm", + "storage/fujitsu/eternus/dx/ssh/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Fujitsu-Eternus-Dx-Ssh/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Fujitsu-Eternus-Dx-Ssh/rpm.json new file mode 100644 index 000000000..60fcdb79d --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Fujitsu-Eternus-Dx-Ssh/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "plink", + "perl(Libssh::Session)" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Hitachi-Hcp-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Storage-Hitachi-Hcp-Snmp/deb.json new file mode 100644 index 000000000..5d24d64c4 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Hitachi-Hcp-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Hitachi-Hcp-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Hitachi-Hcp-Snmp/pkg.json new file mode 100644 index 000000000..8f2dac20a --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Hitachi-Hcp-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Hitachi-Hcp-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_hitachi_hcp_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "storage/hitachi/hcp/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Hitachi-Hcp-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Hitachi-Hcp-Snmp/rpm.json new file mode 100644 index 000000000..14e966306 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Hitachi-Hcp-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Hitachi-Hnas-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Storage-Hitachi-Hnas-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Hitachi-Hnas-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Hitachi-Hnas-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Hitachi-Hnas-Snmp/pkg.json new file mode 100644 index 000000000..a2ca68308 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Hitachi-Hnas-Snmp/pkg.json @@ -0,0 +1,14 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Hitachi-Hnas-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_hitachi_hnas_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "centreon/common/bluearc/", + "storage/hitachi/hnas/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Hitachi-Hnas-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Hitachi-Hnas-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Hitachi-Hnas-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Hitachi-Standard-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Storage-Hitachi-Standard-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Hitachi-Standard-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Hitachi-Standard-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Hitachi-Standard-Snmp/pkg.json new file mode 100644 index 000000000..3bd3882b0 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Hitachi-Standard-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Hitachi-Standard-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_hitachi_standard_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "storage/hitachi/standard/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Hitachi-Standard-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Hitachi-Standard-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Hitachi-Standard-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Hp-3par-Ssh/deb.json b/packaging/centreon-plugin-Hardware-Storage-Hp-3par-Ssh/deb.json new file mode 100644 index 000000000..0d141ee0d --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Hp-3par-Ssh/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libssh-session-perl", + "plink" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Hp-3par-Ssh/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Hp-3par-Ssh/pkg.json new file mode 100644 index 000000000..f277723a5 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Hp-3par-Ssh/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Hp-3par-Ssh", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_hp_3par_ssh.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/plugins/backend/ssh/", + "centreon/plugins/ssh.pm", + "storage/hp/3par/ssh/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Hp-3par-Ssh/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Hp-3par-Ssh/rpm.json new file mode 100644 index 000000000..fb54a67a9 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Hp-3par-Ssh/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(Libssh::Session)", + "plink" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Hp-Eva-Cli/deb.json b/packaging/centreon-plugin-Hardware-Storage-Hp-Eva-Cli/deb.json new file mode 100644 index 000000000..2486d5713 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Hp-Eva-Cli/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl", + "libxml-simple-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Hp-Eva-Cli/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Hp-Eva-Cli/pkg.json new file mode 100644 index 000000000..ff6b0e254 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Hp-Eva-Cli/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Hp-Eva-Cli", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_hp_eva_cli.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "storage/hp/eva/cli" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Hp-Eva-Cli/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Hp-Eva-Cli/rpm.json new file mode 100644 index 000000000..8e4e58cf3 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Hp-Eva-Cli/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl", + "perl(XML::Simple)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Hp-Lefthand-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Storage-Hp-Lefthand-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Hp-Lefthand-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Hp-Lefthand-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Hp-Lefthand-Snmp/pkg.json new file mode 100644 index 000000000..5d2099242 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Hp-Lefthand-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Hp-Lefthand-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_hp_lefthand.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "storage/hp/lefthand/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Hp-Lefthand-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Hp-Lefthand-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Hp-Lefthand-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Hp-Msa2000-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Storage-Hp-Msa2000-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Hp-Msa2000-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Hp-Msa2000-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Hp-Msa2000-Snmp/pkg.json new file mode 100644 index 000000000..cec5eb613 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Hp-Msa2000-Snmp/pkg.json @@ -0,0 +1,14 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Hp-Msa2000-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_hp_msa2000.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/hardwarefibrealliance.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "storage/hp/msa2000/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Hp-Msa2000-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Hp-Msa2000-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Hp-Msa2000-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Hp-Msl-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Storage-Hp-Msl-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Hp-Msl-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Hp-Msl-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Hp-Msl-Snmp/pkg.json new file mode 100644 index 000000000..b113f8dc1 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Hp-Msl-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Hp-Msl-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_hp_msl_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "storage/hp/msl/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Hp-Msl-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Hp-Msl-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Hp-Msl-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Hp-P2000-Xmlapi/deb.json b/packaging/centreon-plugin-Hardware-Storage-Hp-P2000-Xmlapi/deb.json new file mode 100644 index 000000000..42e287363 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Hp-P2000-Xmlapi/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libxml-libxml-simple-perl", + "libdigest-sha-perl" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Hp-P2000-Xmlapi/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Hp-P2000-Xmlapi/pkg.json new file mode 100644 index 000000000..6c9f65d04 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Hp-P2000-Xmlapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Hp-P2000-Xmlapi", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_hp_p2000.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "storage/hp/p2000/xmlapi/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Hp-P2000-Xmlapi/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Hp-P2000-Xmlapi/rpm.json new file mode 100644 index 000000000..99152983f --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Hp-P2000-Xmlapi/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(XML::LibXML::Simple)", + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Hp-Storeonce-Ssh/deb.json b/packaging/centreon-plugin-Hardware-Storage-Hp-Storeonce-Ssh/deb.json new file mode 100644 index 000000000..21ed5ecd4 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Hp-Storeonce-Ssh/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libssh-session-perl", + "plink" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Hp-Storeonce-Ssh/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Hp-Storeonce-Ssh/pkg.json new file mode 100644 index 000000000..11c5f065e --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Hp-Storeonce-Ssh/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Hp-Storeonce-Ssh", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_hp_storeonce_ssh.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/plugins/backend/ssh/", + "centreon/plugins/ssh.pm", + "storage/hp/storeonce/ssh/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Hp-Storeonce-Ssh/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Hp-Storeonce-Ssh/rpm.json new file mode 100644 index 000000000..fb54a67a9 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Hp-Storeonce-Ssh/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(Libssh::Session)", + "plink" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Hp-Storeonce3-Restapi/deb.json b/packaging/centreon-plugin-Hardware-Storage-Hp-Storeonce3-Restapi/deb.json new file mode 100644 index 000000000..49a172692 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Hp-Storeonce3-Restapi/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libxml-simple-perl" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Hp-Storeonce3-Restapi/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Hp-Storeonce3-Restapi/pkg.json new file mode 100644 index 000000000..5f398f7ea --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Hp-Storeonce3-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Hp-Storeonce3-Restapi", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_hp_storeonce3_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "storage/hp/storeonce/3/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Hp-Storeonce3-Restapi/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Hp-Storeonce3-Restapi/rpm.json new file mode 100644 index 000000000..049fa4c5d --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Hp-Storeonce3-Restapi/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(XML::Simple)" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Hp-Storeonce4-Restapi/deb.json b/packaging/centreon-plugin-Hardware-Storage-Hp-Storeonce4-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Hp-Storeonce4-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Hp-Storeonce4-Restapi/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Hp-Storeonce4-Restapi/pkg.json new file mode 100644 index 000000000..eaaffb9d6 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Hp-Storeonce4-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Hp-Storeonce4-Restapi", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_hp_storeonce4_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "storage/hp/storeonce/4/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Hp-Storeonce4-Restapi/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Hp-Storeonce4-Restapi/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Hp-Storeonce4-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Huawei-Oceanstor-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Storage-Huawei-Oceanstor-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Huawei-Oceanstor-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Huawei-Oceanstor-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Huawei-Oceanstor-Snmp/pkg.json new file mode 100644 index 000000000..e241986a5 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Huawei-Oceanstor-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Huawei-Oceanstor-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_huawei_oceanstor_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "storage/huawei/oceanstor/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Huawei-Oceanstor-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Huawei-Oceanstor-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Huawei-Oceanstor-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Ibm-Ds3000-Smcli/deb.json b/packaging/centreon-plugin-Hardware-Storage-Ibm-Ds3000-Smcli/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Ibm-Ds3000-Smcli/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Ibm-Ds3000-Smcli/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Ibm-Ds3000-Smcli/pkg.json new file mode 100644 index 000000000..bd2e5bd81 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Ibm-Ds3000-Smcli/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Ibm-Ds3000-Smcli", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_ibm_ds3000.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/common/smcli/", + "storage/ibm/DS3000/cli/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Ibm-Ds3000-Smcli/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Ibm-Ds3000-Smcli/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Ibm-Ds3000-Smcli/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Ibm-Ds4000-Smcli/deb.json b/packaging/centreon-plugin-Hardware-Storage-Ibm-Ds4000-Smcli/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Ibm-Ds4000-Smcli/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Ibm-Ds4000-Smcli/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Ibm-Ds4000-Smcli/pkg.json new file mode 100644 index 000000000..30e8095d6 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Ibm-Ds4000-Smcli/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Ibm-Ds4000-Smcli", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_ibm_ds4000.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/common/smcli/", + "storage/ibm/DS4000/cli/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Ibm-Ds4000-Smcli/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Ibm-Ds4000-Smcli/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Ibm-Ds4000-Smcli/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Ibm-Ds5000-Smcli/deb.json b/packaging/centreon-plugin-Hardware-Storage-Ibm-Ds5000-Smcli/deb.json new file mode 100644 index 000000000..eab71629b --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Ibm-Ds5000-Smcli/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Ibm-Ds5000-Smcli/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Ibm-Ds5000-Smcli/pkg.json new file mode 100644 index 000000000..57385dbf7 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Ibm-Ds5000-Smcli/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Ibm-Ds5000-Smcli", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_ibm_ds5000.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/common/smcli/", + "storage/ibm/DS5000/cli/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Ibm-Ds5000-Smcli/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Ibm-Ds5000-Smcli/rpm.json new file mode 100644 index 000000000..eab71629b --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Ibm-Ds5000-Smcli/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Ibm-Fs900-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Storage-Ibm-Fs900-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Ibm-Fs900-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Ibm-Fs900-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Ibm-Fs900-Snmp/pkg.json new file mode 100644 index 000000000..2b33cc73f --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Ibm-Fs900-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Ibm-Fs900-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_ibm_fs900.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "storage/ibm/fs900/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Ibm-Fs900-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Ibm-Fs900-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Ibm-Fs900-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Ibm-Storwize-Ssh/deb.json b/packaging/centreon-plugin-Hardware-Storage-Ibm-Storwize-Ssh/deb.json new file mode 100644 index 000000000..21ed5ecd4 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Ibm-Storwize-Ssh/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libssh-session-perl", + "plink" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Ibm-Storwize-Ssh/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Ibm-Storwize-Ssh/pkg.json new file mode 100644 index 000000000..66ab2c3e2 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Ibm-Storwize-Ssh/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Ibm-Storwize-Ssh", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_ibm_storwize_ssh.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/plugins/backend/ssh/", + "centreon/plugins/ssh.pm", + "storage/ibm/storwize/ssh/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Ibm-Storwize-Ssh/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Ibm-Storwize-Ssh/rpm.json new file mode 100644 index 000000000..fb54a67a9 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Ibm-Storwize-Ssh/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(Libssh::Session)", + "plink" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Ibm-Ts2900-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Storage-Ibm-Ts2900-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Ibm-Ts2900-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Ibm-Ts2900-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Ibm-Ts2900-Snmp/pkg.json new file mode 100644 index 000000000..6bfa09460 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Ibm-Ts2900-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Ibm-Ts2900-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_ibm_ts2900.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "storage/ibm/ts2900/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Ibm-Ts2900-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Ibm-Ts2900-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Ibm-Ts2900-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Ibm-Ts3100-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Storage-Ibm-Ts3100-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Ibm-Ts3100-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Ibm-Ts3100-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Ibm-Ts3100-Snmp/pkg.json new file mode 100644 index 000000000..65d8d059f --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Ibm-Ts3100-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Ibm-Ts3100-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_ibm_ts3100.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "storage/ibm/ts3100/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Ibm-Ts3100-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Ibm-Ts3100-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Ibm-Ts3100-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Ibm-Ts3200-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Storage-Ibm-Ts3200-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Ibm-Ts3200-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Ibm-Ts3200-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Ibm-Ts3200-Snmp/pkg.json new file mode 100644 index 000000000..985255119 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Ibm-Ts3200-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Ibm-Ts3200-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_ibm_ts3200.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "storage/ibm/ts3200/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Ibm-Ts3200-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Ibm-Ts3200-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Ibm-Ts3200-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Ibm-Ts3500-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Storage-Ibm-Ts3500-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Ibm-Ts3500-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Ibm-Ts3500-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Ibm-Ts3500-Snmp/pkg.json new file mode 100644 index 000000000..0f29b6e91 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Ibm-Ts3500-Snmp/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Ibm-Ts3500-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_ibm_ts3500.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "storage/ibm/ts3500/snmp/", + "centreon/common/ibm/tapelibrary/snmp/mode/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Ibm-Ts3500-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Ibm-Ts3500-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Ibm-Ts3500-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Kaminario-Restapi/deb.json b/packaging/centreon-plugin-Hardware-Storage-Kaminario-Restapi/deb.json new file mode 100644 index 000000000..540c269f3 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Kaminario-Restapi/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libjson-perl" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Kaminario-Restapi/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Kaminario-Restapi/pkg.json new file mode 100644 index 000000000..6aa7cbe8c --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Kaminario-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Kaminario-Restapi", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_kaminario_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "storage/kaminario/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Kaminario-Restapi/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Kaminario-Restapi/rpm.json new file mode 100644 index 000000000..186961460 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Kaminario-Restapi/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(JSON)" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Lenovo-Iomega-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Storage-Lenovo-Iomega-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Lenovo-Iomega-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Lenovo-Iomega-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Lenovo-Iomega-Snmp/pkg.json new file mode 100644 index 000000000..3057c049d --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Lenovo-Iomega-Snmp/pkg.json @@ -0,0 +1,15 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Lenovo-Iomega-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_lenovo_iomega_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/cpu.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/storage.pm", + "snmp_standard/mode/liststorages.pm", + "snmp_standard/mode/resources/", + "storage/lenovo/iomega/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Lenovo-Iomega-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Lenovo-Iomega-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Lenovo-Iomega-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Lenovo-Sseries-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Storage-Lenovo-Sseries-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Lenovo-Sseries-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Lenovo-Sseries-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Lenovo-Sseries-Snmp/pkg.json new file mode 100644 index 000000000..5d970156d --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Lenovo-Sseries-Snmp/pkg.json @@ -0,0 +1,14 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Lenovo-Sseries-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_lenovo_sseries_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/hardwarefibrealliance.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "storage/lenovo/sseries/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Lenovo-Sseries-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Lenovo-Sseries-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Lenovo-Sseries-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Netapp-Ontap-Oncommandapi/deb.json b/packaging/centreon-plugin-Hardware-Storage-Netapp-Ontap-Oncommandapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Netapp-Ontap-Oncommandapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Netapp-Ontap-Oncommandapi/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Netapp-Ontap-Oncommandapi/pkg.json new file mode 100644 index 000000000..88e815def --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Netapp-Ontap-Oncommandapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Netapp-Ontap-Oncommandapi", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_netapp_ontap_oncommandapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "storage/netapp/ontap/oncommandapi/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Netapp-Ontap-Oncommandapi/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Netapp-Ontap-Oncommandapi/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Netapp-Ontap-Oncommandapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Netapp-Ontap-Restapi/deb.json b/packaging/centreon-plugin-Hardware-Storage-Netapp-Ontap-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Netapp-Ontap-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Netapp-Ontap-Restapi/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Netapp-Ontap-Restapi/pkg.json new file mode 100644 index 000000000..10eae88f1 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Netapp-Ontap-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Netapp-Ontap-Restapi", + "pkg_summary": "Centreon Plugin to monitor Netapp storages using Rest API", + "plugin_name": "centreon_netapp_ontap_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "storage/netapp/ontap/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Netapp-Ontap-Restapi/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Netapp-Ontap-Restapi/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Netapp-Ontap-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Netapp-Ontap-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Storage-Netapp-Ontap-Snmp/deb.json new file mode 100644 index 000000000..5d24d64c4 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Netapp-Ontap-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Netapp-Ontap-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Netapp-Ontap-Snmp/pkg.json new file mode 100644 index 000000000..52c0e34df --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Netapp-Ontap-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Netapp-Ontap-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_netapp_ontap_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "storage/netapp/ontap/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Netapp-Ontap-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Netapp-Ontap-Snmp/rpm.json new file mode 100644 index 000000000..14e966306 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Netapp-Ontap-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Netapp-Santricity-Restapi/deb.json b/packaging/centreon-plugin-Hardware-Storage-Netapp-Santricity-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Netapp-Santricity-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Netapp-Santricity-Restapi/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Netapp-Santricity-Restapi/pkg.json new file mode 100644 index 000000000..97b459981 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Netapp-Santricity-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Netapp-Santricity-Restapi", + "pkg_summary": "Centreon Plugin to monitor Netapp storages with Santricity using RestAPI", + "plugin_name": "centreon_netapp_santricity_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "storage/netapp/santricity/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Netapp-Santricity-Restapi/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Netapp-Santricity-Restapi/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Netapp-Santricity-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Netgear-Readynas-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Storage-Netgear-Readynas-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Netgear-Readynas-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Netgear-Readynas-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Netgear-Readynas-Snmp/pkg.json new file mode 100644 index 000000000..84232a523 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Netgear-Readynas-Snmp/pkg.json @@ -0,0 +1,18 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Netgear-Readynas-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_netgear_readynas_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/cpu.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/liststorages.pm", + "snmp_standard/mode/loadaverage.pm", + "snmp_standard/mode/memory.pm", + "snmp_standard/mode/storage.pm", + "storage/netgear/readynas/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Netgear-Readynas-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Netgear-Readynas-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Netgear-Readynas-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Nimble-Restapi/deb.json b/packaging/centreon-plugin-Hardware-Storage-Nimble-Restapi/deb.json new file mode 100644 index 000000000..540c269f3 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Nimble-Restapi/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libjson-perl" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Nimble-Restapi/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Nimble-Restapi/pkg.json new file mode 100644 index 000000000..6dc129784 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Nimble-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Nimble-Restapi", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_nimble_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "storage/nimble/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Nimble-Restapi/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Nimble-Restapi/rpm.json new file mode 100644 index 000000000..186961460 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Nimble-Restapi/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(JSON)" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Nimble-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Storage-Nimble-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Nimble-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Nimble-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Nimble-Snmp/pkg.json new file mode 100644 index 000000000..410b5f259 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Nimble-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Nimble-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_nimble.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "storage/nimble/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Nimble-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Nimble-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Nimble-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Oracle-Zs-Restapi/deb.json b/packaging/centreon-plugin-Hardware-Storage-Oracle-Zs-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Oracle-Zs-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Oracle-Zs-Restapi/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Oracle-Zs-Restapi/pkg.json new file mode 100644 index 000000000..a4cb04e74 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Oracle-Zs-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Oracle-Zs-Restapi", + "pkg_summary": "Centreon Plugin to monitor Oracle ZS storage using Rest API", + "plugin_name": "centreon_oracle_zs_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "storage/oracle/zs/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Oracle-Zs-Restapi/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Oracle-Zs-Restapi/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Oracle-Zs-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Oracle-Zs-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Storage-Oracle-Zs-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Oracle-Zs-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Oracle-Zs-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Oracle-Zs-Snmp/pkg.json new file mode 100644 index 000000000..3dee2f983 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Oracle-Zs-Snmp/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Oracle-Zs-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_oracle_zs.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/interfaces.pm", + "storage/oracle/zs/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Oracle-Zs-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Oracle-Zs-Snmp/rpm.json new file mode 100644 index 000000000..6521e014c --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Oracle-Zs-Snmp/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(SNMP)" + ], + "custom_pkg_data": "Obsoletes: centreon-plugin-Hardware-Storage-Oracle-Zfs-Snmp" +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Overland-Neo-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Storage-Overland-Neo-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Overland-Neo-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Overland-Neo-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Overland-Neo-Snmp/pkg.json new file mode 100644 index 000000000..524d152a2 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Overland-Neo-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Overland-Neo-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_overland_neo_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "storage/overland/neo/snmp" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Overland-Neo-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Overland-Neo-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Overland-Neo-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Panzura-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Storage-Panzura-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Panzura-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Panzura-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Panzura-Snmp/pkg.json new file mode 100644 index 000000000..9c5b9dad0 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Panzura-Snmp/pkg.json @@ -0,0 +1,20 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Panzura-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_panzura.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/cpudetailed.pm", + "snmp_standard/mode/diskio.pm", + "snmp_standard/mode/diskusage.pm", + "snmp_standard/mode/loadaverage.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listdiskspath.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/liststorages.pm", + "snmp_standard/mode/swap.pm", + "storage/panzura/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Panzura-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Panzura-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Panzura-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Purestorage-Flasharray-Legacy-Restapi/deb.json b/packaging/centreon-plugin-Hardware-Storage-Purestorage-Flasharray-Legacy-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Purestorage-Flasharray-Legacy-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Purestorage-Flasharray-Legacy-Restapi/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Purestorage-Flasharray-Legacy-Restapi/pkg.json new file mode 100644 index 000000000..618676cbe --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Purestorage-Flasharray-Legacy-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Purestorage-Flasharray-Legacy-Restapi", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_purestorage_flasharray_legacy_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "storage/purestorage/flasharray/legacy/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Purestorage-Flasharray-Legacy-Restapi/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Purestorage-Flasharray-Legacy-Restapi/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Purestorage-Flasharray-Legacy-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Purestorage-Flasharray-V2-Restapi/deb.json b/packaging/centreon-plugin-Hardware-Storage-Purestorage-Flasharray-V2-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Purestorage-Flasharray-V2-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Purestorage-Flasharray-V2-Restapi/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Purestorage-Flasharray-V2-Restapi/pkg.json new file mode 100644 index 000000000..3542f0d89 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Purestorage-Flasharray-V2-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Purestorage-Flasharray-V2-Restapi", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_purestorage_flasharray_v2_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "storage/purestorage/flasharray/v2/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Purestorage-Flasharray-V2-Restapi/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Purestorage-Flasharray-V2-Restapi/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Purestorage-Flasharray-V2-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Purestorage-Flashblade-V2-Restapi/deb.json b/packaging/centreon-plugin-Hardware-Storage-Purestorage-Flashblade-V2-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Purestorage-Flashblade-V2-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Purestorage-Flashblade-V2-Restapi/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Purestorage-Flashblade-V2-Restapi/pkg.json new file mode 100644 index 000000000..803ef4ef7 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Purestorage-Flashblade-V2-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Purestorage-Flashblade-V2-Restapi", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_purestorage_flashblade_v2_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "storage/purestorage/flashblade/v2/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Purestorage-Flashblade-V2-Restapi/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Purestorage-Flashblade-V2-Restapi/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Purestorage-Flashblade-V2-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Purestorage-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Storage-Purestorage-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Purestorage-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Purestorage-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Purestorage-Snmp/pkg.json new file mode 100644 index 000000000..30230eb5f --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Purestorage-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Purestorage-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_purestorage_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "storage/purestorage/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Purestorage-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Purestorage-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Purestorage-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Qnap-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Storage-Qnap-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Qnap-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Qnap-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Qnap-Snmp/pkg.json new file mode 100644 index 000000000..67fd5ae8d --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Qnap-Snmp/pkg.json @@ -0,0 +1,18 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Qnap-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_qnap.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/cpu.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/liststorages.pm", + "snmp_standard/mode/ntp.pm", + "snmp_standard/mode/storage.pm", + "snmp_standard/mode/uptime.pm", + "storage/qnap/snmp" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Qnap-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Qnap-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Qnap-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Qsan-Nas-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Storage-Qsan-Nas-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Qsan-Nas-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Qsan-Nas-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Qsan-Nas-Snmp/pkg.json new file mode 100644 index 000000000..97800c67b --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Qsan-Nas-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Qsan-Nas-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_qsan_nas_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "storage/qsan/nas/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Qsan-Nas-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Qsan-Nas-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Qsan-Nas-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Quantum-Dxi-Ssh/deb.json b/packaging/centreon-plugin-Hardware-Storage-Quantum-Dxi-Ssh/deb.json new file mode 100644 index 000000000..21ed5ecd4 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Quantum-Dxi-Ssh/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libssh-session-perl", + "plink" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Quantum-Dxi-Ssh/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Quantum-Dxi-Ssh/pkg.json new file mode 100644 index 000000000..c5176006a --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Quantum-Dxi-Ssh/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Quantum-Dxi-Ssh", + "pkg_summary": "Centreon Plugin to monitor Quantum DXi series appliances through SSH", + "plugin_name": "centreon_quantum_dxi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/plugins/backend/ssh/", + "centreon/plugins/ssh.pm", + "storage/quantum/dxi/ssh/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Quantum-Dxi-Ssh/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Quantum-Dxi-Ssh/rpm.json new file mode 100644 index 000000000..62bcd1b20 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Quantum-Dxi-Ssh/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(Libssh::Session)", + "plink" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Quantum-Scalar-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Storage-Quantum-Scalar-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Quantum-Scalar-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Quantum-Scalar-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Quantum-Scalar-Snmp/pkg.json new file mode 100644 index 000000000..a827b8146 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Quantum-Scalar-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Quantum-Scalar-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_quantum_scalar_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "storage/quantum/scalar/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Storage-Quantum-Scalar-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Quantum-Scalar-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Quantum-Scalar-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Storagetek-Sl-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Storage-Storagetek-Sl-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Storagetek-Sl-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Storagetek-Sl-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Storagetek-Sl-Snmp/pkg.json new file mode 100644 index 000000000..92b4b378b --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Storagetek-Sl-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Storagetek-Sl-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_storagetek_sl_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "storage/storagetek/sl/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Storagetek-Sl-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Storagetek-Sl-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Storagetek-Sl-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Synology-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Storage-Synology-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Synology-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Synology-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Synology-Snmp/pkg.json new file mode 100644 index 000000000..aad8cdc6a --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Synology-Snmp/pkg.json @@ -0,0 +1,15 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Synology-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_synology.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/cpu.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/memory.pm", + "snmp_standard/mode/loadaverage.pm", + "snmp_standard/mode/storage.pm", + "storage/synology/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Synology-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Synology-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Synology-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Violin-3000-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Storage-Violin-3000-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Violin-3000-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Violin-3000-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Storage-Violin-3000-Snmp/pkg.json new file mode 100644 index 000000000..b6e7bdcf4 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Violin-3000-Snmp/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Storage-Violin-3000-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_violin_3000.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "centreon/common/violin/snmp", + "storage/violin/3000/snmp" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Storage-Violin-3000-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Storage-Violin-3000-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Storage-Violin-3000-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Telephony-Alcatel-OXE-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Telephony-Alcatel-OXE-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Telephony-Alcatel-OXE-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Telephony-Alcatel-OXE-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Telephony-Alcatel-OXE-Snmp/pkg.json new file mode 100644 index 000000000..b5ef6926b --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Telephony-Alcatel-OXE-Snmp/pkg.json @@ -0,0 +1,14 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Telephony-Alcatel-OXE-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_alcatel_oxe.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/cpu.pm", + "snmp_standard/mode/memory.pm", + "snmp_standard/mode/storage.pm", + "snmp_standard/mode/swap.pm", + "network/alcatel/oxe/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Telephony-Alcatel-OXE-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Telephony-Alcatel-OXE-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Telephony-Alcatel-OXE-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Telephony-Avaya-Aes-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Telephony-Avaya-Aes-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Telephony-Avaya-Aes-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Telephony-Avaya-Aes-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Telephony-Avaya-Aes-Snmp/pkg.json new file mode 100644 index 000000000..f18465c0b --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Telephony-Avaya-Aes-Snmp/pkg.json @@ -0,0 +1,17 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Telephony-Avaya-Aes-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_avaya_aes_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/cpu.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/liststorages.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/loadaverage.pm", + "snmp_standard/mode/memory.pm", + "snmp_standard/mode/storage.pm", + "hardware/telephony/avaya/aes/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Telephony-Avaya-Aes-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Telephony-Avaya-Aes-Snmp/rpm.json new file mode 100644 index 000000000..14e966306 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Telephony-Avaya-Aes-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Telephony-Avaya-Cm-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Telephony-Avaya-Cm-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Telephony-Avaya-Cm-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Telephony-Avaya-Cm-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Telephony-Avaya-Cm-Snmp/pkg.json new file mode 100644 index 000000000..16dc44a07 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Telephony-Avaya-Cm-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Telephony-Avaya-Cm-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_avaya_cm_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "hardware/telephony/avaya/cm/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Telephony-Avaya-Cm-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Telephony-Avaya-Cm-Snmp/rpm.json new file mode 100644 index 000000000..14e966306 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Telephony-Avaya-Cm-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Telephony-Avaya-Mediagateway-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Telephony-Avaya-Mediagateway-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Telephony-Avaya-Mediagateway-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Telephony-Avaya-Mediagateway-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Telephony-Avaya-Mediagateway-Snmp/pkg.json new file mode 100644 index 000000000..f5711db9e --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Telephony-Avaya-Mediagateway-Snmp/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Telephony-Avaya-Mediagateway-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_avaya_mediagateway_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "centreon/common/avaya/snmp/", + "hardware/telephony/avaya/mediagateway/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Telephony-Avaya-Mediagateway-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Telephony-Avaya-Mediagateway-Snmp/rpm.json new file mode 100644 index 000000000..14e966306 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Telephony-Avaya-Mediagateway-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Ups-Alpha-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Ups-Alpha-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Ups-Alpha-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Ups-Alpha-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Ups-Alpha-Snmp/pkg.json new file mode 100644 index 000000000..e541fb862 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Ups-Alpha-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Ups-Alpha-Snmp", + "pkg_summary": "Centreon Plugin UPS Alpha SNMP", + "plugin_name": "centreon_ups_alpha_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "hardware/ups/alpha/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Ups-Alpha-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Ups-Alpha-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Ups-Alpha-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Ups-Apc-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Ups-Apc-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Ups-Apc-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Ups-Apc-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Ups-Apc-Snmp/pkg.json new file mode 100644 index 000000000..9d61f4367 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Ups-Apc-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Ups-Apc-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_ups_apc.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "hardware/ups/apc/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Ups-Apc-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Ups-Apc-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Ups-Apc-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Ups-Cyberpower-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Ups-Cyberpower-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Ups-Cyberpower-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Ups-Cyberpower-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Ups-Cyberpower-Snmp/pkg.json new file mode 100644 index 000000000..38569350d --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Ups-Cyberpower-Snmp/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Ups-Cyberpower-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_ups_cyberpower_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "centreon/common/cps/ups/snmp/", + "hardware/ups/cyberpower/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Ups-Cyberpower-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Ups-Cyberpower-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Ups-Cyberpower-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Ups-Himoinsa-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Ups-Himoinsa-Snmp/deb.json new file mode 100644 index 000000000..603e56af9 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Ups-Himoinsa-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Ups-Himoinsa-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Ups-Himoinsa-Snmp/pkg.json new file mode 100644 index 000000000..442d139a1 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Ups-Himoinsa-Snmp/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Ups-Himoinsa-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_ups_himoinsa_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/uptime.pm", + "hardware/ups/himoinsa/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Ups-Himoinsa-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Ups-Himoinsa-Snmp/rpm.json new file mode 100644 index 000000000..88415b346 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Ups-Himoinsa-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Ups-Hp-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Ups-Hp-Snmp/deb.json new file mode 100644 index 000000000..a3372ab7f --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Ups-Hp-Snmp/deb.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "libsnmp-perl", + "libdatetime-perl", + "libnet-ntp-perl" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Ups-Hp-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Ups-Hp-Snmp/pkg.json new file mode 100644 index 000000000..8227bbd2c --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Ups-Hp-Snmp/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Ups-Hp-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_ups_hp_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/ntp.pm", + "hardware/ups/hp/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Ups-Hp-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Ups-Hp-Snmp/rpm.json new file mode 100644 index 000000000..284e215e6 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Ups-Hp-Snmp/rpm.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "perl(SNMP)", + "perl(DateTime)", + "perl(Net::NTP)" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Ups-Mge-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Ups-Mge-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Ups-Mge-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Ups-Mge-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Ups-Mge-Snmp/pkg.json new file mode 100644 index 000000000..19ce13ded --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Ups-Mge-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Ups-Mge-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_ups_mge_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "hardware/ups/mge/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Ups-Mge-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Ups-Mge-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Ups-Mge-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Ups-Nitram-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Ups-Nitram-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Ups-Nitram-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Ups-Nitram-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Ups-Nitram-Snmp/pkg.json new file mode 100644 index 000000000..df44b6e40 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Ups-Nitram-Snmp/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Ups-Nitram-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_ups_nitram_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "centreon/common/cps/ups/snmp/", + "hardware/ups/nitram/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Ups-Nitram-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Ups-Nitram-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Ups-Nitram-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Ups-Phoenixtec-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Ups-Phoenixtec-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Ups-Phoenixtec-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Ups-Phoenixtec-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Ups-Phoenixtec-Snmp/pkg.json new file mode 100644 index 000000000..e59213e10 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Ups-Phoenixtec-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Ups-Phoenixtec-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_ups_phoenixtec_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "hardware/ups/phoenixtec/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Ups-Phoenixtec-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Ups-Phoenixtec-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Ups-Phoenixtec-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Ups-Powerware-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Ups-Powerware-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Ups-Powerware-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Ups-Powerware-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Ups-Powerware-Snmp/pkg.json new file mode 100644 index 000000000..fbc7b3d1f --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Ups-Powerware-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Ups-Powerware-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_ups_powerware_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "hardware/ups/powerware/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Ups-Powerware-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Ups-Powerware-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Ups-Powerware-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Ups-Socomec-Netvision-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Ups-Socomec-Netvision-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Ups-Socomec-Netvision-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Ups-Socomec-Netvision-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Ups-Socomec-Netvision-Snmp/pkg.json new file mode 100644 index 000000000..e50cc530f --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Ups-Socomec-Netvision-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Ups-Socomec-Netvision-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_ups_socomec_netvision_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "hardware/ups/socomec/netvision/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Hardware-Ups-Socomec-Netvision-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Ups-Socomec-Netvision-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Ups-Socomec-Netvision-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Ups-Standard-Rfc1628-Snmp/deb.json b/packaging/centreon-plugin-Hardware-Ups-Standard-Rfc1628-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Ups-Standard-Rfc1628-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Ups-Standard-Rfc1628-Snmp/pkg.json b/packaging/centreon-plugin-Hardware-Ups-Standard-Rfc1628-Snmp/pkg.json new file mode 100644 index 000000000..5fe28c0f6 --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Ups-Standard-Rfc1628-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Hardware-Ups-Standard-Rfc1628-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_ups_standard_rfc1628_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "hardware/ups/standard/rfc1628/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Hardware-Ups-Standard-Rfc1628-Snmp/rpm.json b/packaging/centreon-plugin-Hardware-Ups-Standard-Rfc1628-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Hardware-Ups-Standard-Rfc1628-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-3com-Snmp/deb.json b/packaging/centreon-plugin-Network-3com-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-3com-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-3com-Snmp/pkg.json b/packaging/centreon-plugin-Network-3com-Snmp/pkg.json new file mode 100644 index 000000000..384f7e829 --- /dev/null +++ b/packaging/centreon-plugin-Network-3com-Snmp/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Network-3com-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_3com.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "network/3com/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-3com-Snmp/rpm.json b/packaging/centreon-plugin-Network-3com-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-3com-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Acmepacket-Snmp/deb.json b/packaging/centreon-plugin-Network-Acmepacket-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Acmepacket-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Acmepacket-Snmp/pkg.json b/packaging/centreon-plugin-Network-Acmepacket-Snmp/pkg.json new file mode 100644 index 000000000..a83b1ce11 --- /dev/null +++ b/packaging/centreon-plugin-Network-Acmepacket-Snmp/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Network-Acmepacket-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_acmepacket_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "network/acmepacket/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Acmepacket-Snmp/rpm.json b/packaging/centreon-plugin-Network-Acmepacket-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Acmepacket-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Adva-Fsp150-Snmp/deb.json b/packaging/centreon-plugin-Network-Adva-Fsp150-Snmp/deb.json new file mode 100644 index 000000000..6b56a4bc9 --- /dev/null +++ b/packaging/centreon-plugin-Network-Adva-Fsp150-Snmp/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libdatetime-perl", + "libsnmp-perl" + ] +} diff --git a/packaging/centreon-plugin-Network-Adva-Fsp150-Snmp/pkg.json b/packaging/centreon-plugin-Network-Adva-Fsp150-Snmp/pkg.json new file mode 100644 index 000000000..980e30c4b --- /dev/null +++ b/packaging/centreon-plugin-Network-Adva-Fsp150-Snmp/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Network-Adva-Fsp150-Snmp", + "pkg_summary": "Centreon Plugin Adva FSP150 SNMP", + "plugin_name": "centreon_adva_fsp150_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "network/adva/fsp150/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Adva-Fsp150-Snmp/rpm.json b/packaging/centreon-plugin-Network-Adva-Fsp150-Snmp/rpm.json new file mode 100644 index 000000000..996b83818 --- /dev/null +++ b/packaging/centreon-plugin-Network-Adva-Fsp150-Snmp/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(SNMP)" + ] +} diff --git a/packaging/centreon-plugin-Network-Adva-Fsp3000-Snmp/deb.json b/packaging/centreon-plugin-Network-Adva-Fsp3000-Snmp/deb.json new file mode 100644 index 000000000..6b56a4bc9 --- /dev/null +++ b/packaging/centreon-plugin-Network-Adva-Fsp3000-Snmp/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libdatetime-perl", + "libsnmp-perl" + ] +} diff --git a/packaging/centreon-plugin-Network-Adva-Fsp3000-Snmp/pkg.json b/packaging/centreon-plugin-Network-Adva-Fsp3000-Snmp/pkg.json new file mode 100644 index 000000000..f51d88aa7 --- /dev/null +++ b/packaging/centreon-plugin-Network-Adva-Fsp3000-Snmp/pkg.json @@ -0,0 +1,15 @@ +{ + "pkg_name": "centreon-plugin-Network-Adva-Fsp3000-Snmp", + "pkg_summary": "Centreon Plugin Adva FSP3000 SNMP", + "plugin_name": "centreon_adva_fsp3000_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/memory.pm", + "snmp_standard/mode/uptime.pm", + "network/adva/fsp3000/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Adva-Fsp3000-Snmp/rpm.json b/packaging/centreon-plugin-Network-Adva-Fsp3000-Snmp/rpm.json new file mode 100644 index 000000000..996b83818 --- /dev/null +++ b/packaging/centreon-plugin-Network-Adva-Fsp3000-Snmp/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(SNMP)" + ] +} diff --git a/packaging/centreon-plugin-Network-Aerohive-Snmp/deb.json b/packaging/centreon-plugin-Network-Aerohive-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Aerohive-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Aerohive-Snmp/pkg.json b/packaging/centreon-plugin-Network-Aerohive-Snmp/pkg.json new file mode 100644 index 000000000..bdf507da5 --- /dev/null +++ b/packaging/centreon-plugin-Network-Aerohive-Snmp/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Network-Aerohive-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_aerohive_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "network/aerohive/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Aerohive-Snmp/rpm.json b/packaging/centreon-plugin-Network-Aerohive-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Aerohive-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Allied-Snmp/deb.json b/packaging/centreon-plugin-Network-Allied-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Allied-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Allied-Snmp/pkg.json b/packaging/centreon-plugin-Network-Allied-Snmp/pkg.json new file mode 100644 index 000000000..23ecba939 --- /dev/null +++ b/packaging/centreon-plugin-Network-Allied-Snmp/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Network-Allied-Snmp", + "pkg_summary": "Centreon Plugin Allied SNMP", + "plugin_name": "centreon_allied_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "network/allied/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Allied-Snmp/rpm.json b/packaging/centreon-plugin-Network-Allied-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Allied-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Alvarion-Breezeaccess-Snmp/deb.json b/packaging/centreon-plugin-Network-Alvarion-Breezeaccess-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Alvarion-Breezeaccess-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Alvarion-Breezeaccess-Snmp/pkg.json b/packaging/centreon-plugin-Network-Alvarion-Breezeaccess-Snmp/pkg.json new file mode 100644 index 000000000..0037c0e3d --- /dev/null +++ b/packaging/centreon-plugin-Network-Alvarion-Breezeaccess-Snmp/pkg.json @@ -0,0 +1,14 @@ +{ + "pkg_name": "centreon-plugin-Network-Alvarion-Breezeaccess-Snmp", + "pkg_summary": "Centreon Plugin Alvarion Breezeaccess SNMP", + "plugin_name": "centreon_alvarion_breezeaccess_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/uptime.pm", + "network/alvarion/breezeaccess/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Alvarion-Breezeaccess-Snmp/rpm.json b/packaging/centreon-plugin-Network-Alvarion-Breezeaccess-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Alvarion-Breezeaccess-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Aruba-Aoscx-Snmp/deb.json b/packaging/centreon-plugin-Network-Aruba-Aoscx-Snmp/deb.json new file mode 100644 index 000000000..5d24d64c4 --- /dev/null +++ b/packaging/centreon-plugin-Network-Aruba-Aoscx-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} diff --git a/packaging/centreon-plugin-Network-Aruba-Aoscx-Snmp/pkg.json b/packaging/centreon-plugin-Network-Aruba-Aoscx-Snmp/pkg.json new file mode 100644 index 000000000..8b04f3365 --- /dev/null +++ b/packaging/centreon-plugin-Network-Aruba-Aoscx-Snmp/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Network-Aruba-Aoscx-Snmp", + "pkg_summary": "Centreon Plugin to monitor ArubaOS-CX using SNMP", + "plugin_name": "centreon_aruba_aoscx_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/interfaces.pm", + "network/aruba/aoscx/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Aruba-Aoscx-Snmp/rpm.json b/packaging/centreon-plugin-Network-Aruba-Aoscx-Snmp/rpm.json new file mode 100644 index 000000000..14e966306 --- /dev/null +++ b/packaging/centreon-plugin-Network-Aruba-Aoscx-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} diff --git a/packaging/centreon-plugin-Network-Aruba-Instant-Snmp/deb.json b/packaging/centreon-plugin-Network-Aruba-Instant-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Aruba-Instant-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Aruba-Instant-Snmp/pkg.json b/packaging/centreon-plugin-Network-Aruba-Instant-Snmp/pkg.json new file mode 100644 index 000000000..bcb8e01b0 --- /dev/null +++ b/packaging/centreon-plugin-Network-Aruba-Instant-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Network-Aruba-Instant-Snmp", + "pkg_summary": "Centreon Plugin to monitor Aruba Instant using SNMP", + "plugin_name": "centreon_aruba_instant_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "network/aruba/instant/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Aruba-Instant-Snmp/rpm.json b/packaging/centreon-plugin-Network-Aruba-Instant-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Aruba-Instant-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Aruba-Orchestrator-Restapi/deb.json b/packaging/centreon-plugin-Network-Aruba-Orchestrator-Restapi/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Network-Aruba-Orchestrator-Restapi/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Network-Aruba-Orchestrator-Restapi/pkg.json b/packaging/centreon-plugin-Network-Aruba-Orchestrator-Restapi/pkg.json new file mode 100644 index 000000000..02035d003 --- /dev/null +++ b/packaging/centreon-plugin-Network-Aruba-Orchestrator-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Network-Aruba-Orchestrator-Restapi", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_aruba_orchestrator_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "network/aruba/orchestrator/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Network-Aruba-Orchestrator-Restapi/rpm.json b/packaging/centreon-plugin-Network-Aruba-Orchestrator-Restapi/rpm.json new file mode 100644 index 000000000..e9dff7552 --- /dev/null +++ b/packaging/centreon-plugin-Network-Aruba-Orchestrator-Restapi/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(DateTime)" + ] +} diff --git a/packaging/centreon-plugin-Network-Athonet-Epc-Snmp/deb.json b/packaging/centreon-plugin-Network-Athonet-Epc-Snmp/deb.json new file mode 100644 index 000000000..88e9c2b4f --- /dev/null +++ b/packaging/centreon-plugin-Network-Athonet-Epc-Snmp/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libdatetime-perl", + "libsnmp-perl" + ] +} diff --git a/packaging/centreon-plugin-Network-Athonet-Epc-Snmp/pkg.json b/packaging/centreon-plugin-Network-Athonet-Epc-Snmp/pkg.json new file mode 100644 index 000000000..45a6b32eb --- /dev/null +++ b/packaging/centreon-plugin-Network-Athonet-Epc-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Network-Athonet-Epc-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_athonet_epc_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "network/athonet/epc/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Athonet-Epc-Snmp/rpm.json b/packaging/centreon-plugin-Network-Athonet-Epc-Snmp/rpm.json new file mode 100644 index 000000000..996b83818 --- /dev/null +++ b/packaging/centreon-plugin-Network-Athonet-Epc-Snmp/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(SNMP)" + ] +} diff --git a/packaging/centreon-plugin-Network-Atto-Fibrebridge-Snmp/deb.json b/packaging/centreon-plugin-Network-Atto-Fibrebridge-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Atto-Fibrebridge-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Atto-Fibrebridge-Snmp/pkg.json b/packaging/centreon-plugin-Network-Atto-Fibrebridge-Snmp/pkg.json new file mode 100644 index 000000000..555325f39 --- /dev/null +++ b/packaging/centreon-plugin-Network-Atto-Fibrebridge-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Network-Atto-Fibrebridge-Snmp", + "pkg_summary": "Centreon Plugin Atto Fibrebridge SNMP", + "plugin_name": "centreon_atto_fibrebridge_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "network/atto/fibrebridge/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Atto-Fibrebridge-Snmp/rpm.json b/packaging/centreon-plugin-Network-Atto-Fibrebridge-Snmp/rpm.json new file mode 100644 index 000000000..14e966306 --- /dev/null +++ b/packaging/centreon-plugin-Network-Atto-Fibrebridge-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} diff --git a/packaging/centreon-plugin-Network-Audiocodes-Snmp/deb.json b/packaging/centreon-plugin-Network-Audiocodes-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Audiocodes-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Audiocodes-Snmp/pkg.json b/packaging/centreon-plugin-Network-Audiocodes-Snmp/pkg.json new file mode 100644 index 000000000..f2fc0e007 --- /dev/null +++ b/packaging/centreon-plugin-Network-Audiocodes-Snmp/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Network-Audiocodes-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_audiocodes.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "network/audiocodes/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Audiocodes-Snmp/rpm.json b/packaging/centreon-plugin-Network-Audiocodes-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Audiocodes-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Barracuda-Bma-Snmp/deb.json b/packaging/centreon-plugin-Network-Barracuda-Bma-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Barracuda-Bma-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Barracuda-Bma-Snmp/pkg.json b/packaging/centreon-plugin-Network-Barracuda-Bma-Snmp/pkg.json new file mode 100644 index 000000000..dc5c28945 --- /dev/null +++ b/packaging/centreon-plugin-Network-Barracuda-Bma-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Network-Barracuda-Bma-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_barracuda_bma_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "network/barracuda/bma/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Barracuda-Bma-Snmp/rpm.json b/packaging/centreon-plugin-Network-Barracuda-Bma-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Barracuda-Bma-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Barracuda-Cloudgen-Snmp/deb.json b/packaging/centreon-plugin-Network-Barracuda-Cloudgen-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Barracuda-Cloudgen-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Barracuda-Cloudgen-Snmp/pkg.json b/packaging/centreon-plugin-Network-Barracuda-Cloudgen-Snmp/pkg.json new file mode 100644 index 000000000..450b8eb99 --- /dev/null +++ b/packaging/centreon-plugin-Network-Barracuda-Cloudgen-Snmp/pkg.json @@ -0,0 +1,19 @@ +{ + "pkg_name": "centreon-plugin-Network-Barracuda-Cloudgen-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_barracuda_cloudgen_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "network/barracuda/cloudgen/snmp/", + "snmp_standard/mode/cpu.pm", + "snmp_standard/mode/cpudetailed.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/loadaverage.pm", + "snmp_standard/mode/memory.pm", + "snmp_standard/mode/storage.pm", + "snmp_standard/mode/uptime.pm" + ] +} diff --git a/packaging/centreon-plugin-Network-Barracuda-Cloudgen-Snmp/rpm.json b/packaging/centreon-plugin-Network-Barracuda-Cloudgen-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Barracuda-Cloudgen-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Beeware-Snmp/deb.json b/packaging/centreon-plugin-Network-Beeware-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Beeware-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Beeware-Snmp/pkg.json b/packaging/centreon-plugin-Network-Beeware-Snmp/pkg.json new file mode 100644 index 000000000..f29856fac --- /dev/null +++ b/packaging/centreon-plugin-Network-Beeware-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Network-Beeware-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_beeware.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "network/beeware/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Beeware-Snmp/rpm.json b/packaging/centreon-plugin-Network-Beeware-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Beeware-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Cambium-Epmp-Snmp/deb.json b/packaging/centreon-plugin-Network-Cambium-Epmp-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Cambium-Epmp-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Cambium-Epmp-Snmp/pkg.json b/packaging/centreon-plugin-Network-Cambium-Epmp-Snmp/pkg.json new file mode 100644 index 000000000..f526c7a01 --- /dev/null +++ b/packaging/centreon-plugin-Network-Cambium-Epmp-Snmp/pkg.json @@ -0,0 +1,14 @@ +{ + "pkg_name": "centreon-plugin-Network-Cambium-Epmp-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_cambium_epmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/uptime.pm", + "snmp_standard/mode/resources/", + "network/cambium/epmp/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Cambium-Epmp-Snmp/rpm.json b/packaging/centreon-plugin-Network-Cambium-Epmp-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Cambium-Epmp-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Cisco-Apic-Restapi/deb.json b/packaging/centreon-plugin-Network-Cisco-Apic-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Apic-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Network-Cisco-Apic-Restapi/pkg.json b/packaging/centreon-plugin-Network-Cisco-Apic-Restapi/pkg.json new file mode 100644 index 000000000..d6f9bfc4c --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Apic-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Network-Cisco-Apic-Restapi", + "pkg_summary": "Centreon Plugin to monitor Cisco Apic using RestAPI", + "plugin_name": "centreon_cisco_apic_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "network/cisco/aci/apic/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Network-Cisco-Apic-Restapi/rpm.json b/packaging/centreon-plugin-Network-Cisco-Apic-Restapi/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Apic-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Network-Cisco-Callmanager-Snmp/deb.json b/packaging/centreon-plugin-Network-Cisco-Callmanager-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Callmanager-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Cisco-Callmanager-Snmp/pkg.json b/packaging/centreon-plugin-Network-Cisco-Callmanager-Snmp/pkg.json new file mode 100644 index 000000000..ccfb3713c --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Callmanager-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Network-Cisco-Callmanager-Snmp", + "pkg_summary": "Centreon Plugin to monitor Cisco Call Manager using SNMP", + "plugin_name": "centreon_cisco_callmanager_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "network/cisco/callmanager/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Cisco-Callmanager-Snmp/rpm.json b/packaging/centreon-plugin-Network-Cisco-Callmanager-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Callmanager-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Cisco-Callmanager-Sxml/deb.json b/packaging/centreon-plugin-Network-Cisco-Callmanager-Sxml/deb.json new file mode 100644 index 000000000..426dcb356 --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Callmanager-Sxml/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libxml-libxml-simple-perl", + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Network-Cisco-Callmanager-Sxml/pkg.json b/packaging/centreon-plugin-Network-Cisco-Callmanager-Sxml/pkg.json new file mode 100644 index 000000000..3f2d059cf --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Callmanager-Sxml/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Network-Cisco-Callmanager-Sxml", + "pkg_summary": "Centreon Plugin to monitor CUCM using SXML", + "plugin_name": "centreon_cisco_cucm_sxml.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "network/cisco/callmanager/sxml/" + ] +} diff --git a/packaging/centreon-plugin-Network-Cisco-Callmanager-Sxml/rpm.json b/packaging/centreon-plugin-Network-Cisco-Callmanager-Sxml/rpm.json new file mode 100644 index 000000000..1a6dcd061 --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Callmanager-Sxml/rpm.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "perl(XML::LibXML::Simple)", + "perl(DateTime)", + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Network-Cisco-Esa-Restapi/deb.json b/packaging/centreon-plugin-Network-Cisco-Esa-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Esa-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Network-Cisco-Esa-Restapi/pkg.json b/packaging/centreon-plugin-Network-Cisco-Esa-Restapi/pkg.json new file mode 100644 index 000000000..11c3538cb --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Esa-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Network-Cisco-Esa-Restapi", + "pkg_summary": "Centreon Plugin to monitor Cisco ESA using RestAPI", + "plugin_name": "centreon_cisco_esa_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "network/cisco/esa/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Network-Cisco-Esa-Restapi/rpm.json b/packaging/centreon-plugin-Network-Cisco-Esa-Restapi/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Esa-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Network-Cisco-Esa-Xmlapi/deb.json b/packaging/centreon-plugin-Network-Cisco-Esa-Xmlapi/deb.json new file mode 100644 index 000000000..49a172692 --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Esa-Xmlapi/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libxml-simple-perl" + ] +} diff --git a/packaging/centreon-plugin-Network-Cisco-Esa-Xmlapi/pkg.json b/packaging/centreon-plugin-Network-Cisco-Esa-Xmlapi/pkg.json new file mode 100644 index 000000000..f880a9ff9 --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Esa-Xmlapi/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Network-Cisco-Esa-Xmlapi", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_cisco_esa_xmlapi.pl", + "files": [ + "centreon/plugins/script_simple.pm", + "centreon/common/cisco/ironport/xmlapi/", + "network/cisco/esa/xmlapi/" + ] +} diff --git a/packaging/centreon-plugin-Network-Cisco-Esa-Xmlapi/rpm.json b/packaging/centreon-plugin-Network-Cisco-Esa-Xmlapi/rpm.json new file mode 100644 index 000000000..2a50772dc --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Esa-Xmlapi/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(XML::Simple)", + "perl(Time::HiRes)" + ] +} diff --git a/packaging/centreon-plugin-Network-Cisco-Firepower-Fmc-Restapi/deb.json b/packaging/centreon-plugin-Network-Cisco-Firepower-Fmc-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Firepower-Fmc-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Network-Cisco-Firepower-Fmc-Restapi/pkg.json b/packaging/centreon-plugin-Network-Cisco-Firepower-Fmc-Restapi/pkg.json new file mode 100644 index 000000000..892c3fb6c --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Firepower-Fmc-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Network-Cisco-Firepower-Fmc-Restapi", + "pkg_summary": "Centreon Plugin to monitor Cisco Firepower Management Center using Rest API", + "plugin_name": "centreon_cisco_firepower_fmc_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "network/cisco/firepower/fmc/restapi" + ] +} diff --git a/packaging/centreon-plugin-Network-Cisco-Firepower-Fmc-Restapi/rpm.json b/packaging/centreon-plugin-Network-Cisco-Firepower-Fmc-Restapi/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Firepower-Fmc-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Network-Cisco-Firepower-Snmp/deb.json b/packaging/centreon-plugin-Network-Cisco-Firepower-Snmp/deb.json new file mode 100644 index 000000000..88e9c2b4f --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Firepower-Snmp/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libdatetime-perl", + "libsnmp-perl" + ] +} diff --git a/packaging/centreon-plugin-Network-Cisco-Firepower-Snmp/pkg.json b/packaging/centreon-plugin-Network-Cisco-Firepower-Snmp/pkg.json new file mode 100644 index 000000000..41543ab6c --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Firepower-Snmp/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Network-Cisco-Firepower-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_cisco_firepower_fxos_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "network/cisco/firepower/fxos/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Cisco-Firepower-Snmp/rpm.json b/packaging/centreon-plugin-Network-Cisco-Firepower-Snmp/rpm.json new file mode 100644 index 000000000..996b83818 --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Firepower-Snmp/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(SNMP)" + ] +} diff --git a/packaging/centreon-plugin-Network-Cisco-Ironport-Snmp/deb.json b/packaging/centreon-plugin-Network-Cisco-Ironport-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Ironport-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Cisco-Ironport-Snmp/pkg.json b/packaging/centreon-plugin-Network-Cisco-Ironport-Snmp/pkg.json new file mode 100644 index 000000000..df1fcfa55 --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Ironport-Snmp/pkg.json @@ -0,0 +1,14 @@ +{ + "pkg_name": "centreon-plugin-Network-Cisco-Ironport-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_cisco_ironport.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "centreon/common/cisco/ironport/snmp/", + "network/cisco/ironport/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Cisco-Ironport-Snmp/rpm.json b/packaging/centreon-plugin-Network-Cisco-Ironport-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Ironport-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Cisco-Meraki-Restapi/deb.json b/packaging/centreon-plugin-Network-Cisco-Meraki-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Meraki-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Network-Cisco-Meraki-Restapi/pkg.json b/packaging/centreon-plugin-Network-Cisco-Meraki-Restapi/pkg.json new file mode 100644 index 000000000..adbc67083 --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Meraki-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Network-Cisco-Meraki-Restapi", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_cisco_meraki_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "network/cisco/meraki/cloudcontroller/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Network-Cisco-Meraki-Restapi/rpm.json b/packaging/centreon-plugin-Network-Cisco-Meraki-Restapi/rpm.json new file mode 100644 index 000000000..6faebba48 --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Meraki-Restapi/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + ], + "custom_pkg_data": "Obsoletes: centreon-plugin-Network-Cisco-Meraki-Restap" +} diff --git a/packaging/centreon-plugin-Network-Cisco-Meraki-Snmp/deb.json b/packaging/centreon-plugin-Network-Cisco-Meraki-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Meraki-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Cisco-Meraki-Snmp/pkg.json b/packaging/centreon-plugin-Network-Cisco-Meraki-Snmp/pkg.json new file mode 100644 index 000000000..39ee7dbab --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Meraki-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Network-Cisco-Meraki-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_cisco_meraki_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "network/cisco/meraki/cloudcontroller/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Cisco-Meraki-Snmp/rpm.json b/packaging/centreon-plugin-Network-Cisco-Meraki-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Meraki-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Cisco-Prime-Restapi/deb.json b/packaging/centreon-plugin-Network-Cisco-Prime-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Prime-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Network-Cisco-Prime-Restapi/pkg.json b/packaging/centreon-plugin-Network-Cisco-Prime-Restapi/pkg.json new file mode 100644 index 000000000..530b4628b --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Prime-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Network-Cisco-Prime-Restapi", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_cisco_prime_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "network/cisco/prime/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Network-Cisco-Prime-Restapi/rpm.json b/packaging/centreon-plugin-Network-Cisco-Prime-Restapi/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Prime-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Network-Cisco-Ssms-Restapi/deb.json b/packaging/centreon-plugin-Network-Cisco-Ssms-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Ssms-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Network-Cisco-Ssms-Restapi/pkg.json b/packaging/centreon-plugin-Network-Cisco-Ssms-Restapi/pkg.json new file mode 100644 index 000000000..499dfb523 --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Ssms-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Network-Cisco-Ssms-Restapi", + "pkg_summary": "Centreon Plugin to monitor Cisco Smart Software Manager Satellite using RestAPI", + "plugin_name": "centreon_cisco_ssms_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/cisco/ssms/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Network-Cisco-Ssms-Restapi/rpm.json b/packaging/centreon-plugin-Network-Cisco-Ssms-Restapi/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Ssms-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Network-Cisco-Standard-Snmp/deb.json b/packaging/centreon-plugin-Network-Cisco-Standard-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Standard-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Cisco-Standard-Snmp/pkg.json b/packaging/centreon-plugin-Network-Cisco-Standard-Snmp/pkg.json new file mode 100644 index 000000000..f245052c9 --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Standard-Snmp/pkg.json @@ -0,0 +1,18 @@ +{ + "pkg_name": "centreon-plugin-Network-Cisco-Standard-Snmp", + "pkg_summary": "Centreon Plugin to monitor Cisco switches using SNMP", + "plugin_name": "centreon_cisco_standard_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "centreon/common/cisco/standard/snmp/", + "network/cisco/standard/snmp/", + "snmp_standard/mode/arp.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/listspanningtrees.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/spanningtree.pm", + "snmp_standard/mode/uptime.pm" + ] +} diff --git a/packaging/centreon-plugin-Network-Cisco-Standard-Snmp/rpm.json b/packaging/centreon-plugin-Network-Cisco-Standard-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Standard-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Cisco-Standard-Ssh/deb.json b/packaging/centreon-plugin-Network-Cisco-Standard-Ssh/deb.json new file mode 100644 index 000000000..0d141ee0d --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Standard-Ssh/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libssh-session-perl", + "plink" + ] +} diff --git a/packaging/centreon-plugin-Network-Cisco-Standard-Ssh/pkg.json b/packaging/centreon-plugin-Network-Cisco-Standard-Ssh/pkg.json new file mode 100644 index 000000000..5fd42c631 --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Standard-Ssh/pkg.json @@ -0,0 +1,12 @@ +{ + "pkg_name": "centreon-plugin-Network-Cisco-Standard-Ssh", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_cisco_standard_ssh.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/plugins/script_custom/cli.pm", + "centreon/plugins/backend/ssh/", + "centreon/plugins/ssh.pm", + "network/cisco/standard/ssh/" + ] +} diff --git a/packaging/centreon-plugin-Network-Cisco-Standard-Ssh/rpm.json b/packaging/centreon-plugin-Network-Cisco-Standard-Ssh/rpm.json new file mode 100644 index 000000000..fb54a67a9 --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Standard-Ssh/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(Libssh::Session)", + "plink" + ] +} diff --git a/packaging/centreon-plugin-Network-Cisco-Umbrella-Snmp/deb.json b/packaging/centreon-plugin-Network-Cisco-Umbrella-Snmp/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Umbrella-Snmp/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Network-Cisco-Umbrella-Snmp/pkg.json b/packaging/centreon-plugin-Network-Cisco-Umbrella-Snmp/pkg.json new file mode 100644 index 000000000..dae8f8778 --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Umbrella-Snmp/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Network-Cisco-Umbrella-Snmp", + "pkg_summary": "Centreon Plugin to monitor Cisco Umbrella using SNMP.", + "plugin_name": "centreon_cisco_umbrella_snmp.pl", + "files": [ + "network/cisco/umbrella/snmp/", + "snmp_standard/mode/cpudetailed.pm", + "snmp_standard/mode/loadaverage.pm", + "snmp_standard/mode/memory.pm", + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm" + ] +} diff --git a/packaging/centreon-plugin-Network-Cisco-Umbrella-Snmp/rpm.json b/packaging/centreon-plugin-Network-Cisco-Umbrella-Snmp/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Umbrella-Snmp/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Network-Cisco-Vcs-Restapi/deb.json b/packaging/centreon-plugin-Network-Cisco-Vcs-Restapi/deb.json new file mode 100644 index 000000000..e476b2efc --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Vcs-Restapi/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libxml-libxml-simple-perl", + "libtime-parsedate-perl" + ] +} diff --git a/packaging/centreon-plugin-Network-Cisco-Vcs-Restapi/pkg.json b/packaging/centreon-plugin-Network-Cisco-Vcs-Restapi/pkg.json new file mode 100644 index 000000000..6158dd8f3 --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Vcs-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Network-Cisco-Vcs-Restapi", + "pkg_summary": "Centreon Plugin to monitor Cisco VCS (TelePresence Video Communication Server) using RestAPI", + "plugin_name": "centreon_cisco_vcs_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "network/cisco/vcs/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Network-Cisco-Vcs-Restapi/rpm.json b/packaging/centreon-plugin-Network-Cisco-Vcs-Restapi/rpm.json new file mode 100644 index 000000000..40d44e988 --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Vcs-Restapi/rpm.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "perl(XML::LibXML::Simple)", + "perl(Date::Parse)", + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Network-Cisco-Voice-Gateway-Snmp/deb.json b/packaging/centreon-plugin-Network-Cisco-Voice-Gateway-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Voice-Gateway-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Cisco-Voice-Gateway-Snmp/pkg.json b/packaging/centreon-plugin-Network-Cisco-Voice-Gateway-Snmp/pkg.json new file mode 100644 index 000000000..a577e1e6e --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Voice-Gateway-Snmp/pkg.json @@ -0,0 +1,15 @@ +{ + "pkg_name": "centreon-plugin-Network-Cisco-Voice-Gateway-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_cisco_voice_gateway_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/isdnusage.pm", + "centreon/common/cisco/standard/snmp/mode/voicecall.pm", + "network/cisco/vg/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Cisco-Voice-Gateway-Snmp/rpm.json b/packaging/centreon-plugin-Network-Cisco-Voice-Gateway-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Voice-Gateway-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Cisco-Waas-Snmp/deb.json b/packaging/centreon-plugin-Network-Cisco-Waas-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Waas-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Cisco-Waas-Snmp/pkg.json b/packaging/centreon-plugin-Network-Cisco-Waas-Snmp/pkg.json new file mode 100644 index 000000000..b7fe9a91c --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Waas-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Network-Cisco-Waas-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_cisco_waas.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "network/cisco/WaaS" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Cisco-Waas-Snmp/rpm.json b/packaging/centreon-plugin-Network-Cisco-Waas-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Waas-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Cisco-Wap-Snmp/deb.json b/packaging/centreon-plugin-Network-Cisco-Wap-Snmp/deb.json new file mode 100644 index 000000000..5d24d64c4 --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Wap-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} diff --git a/packaging/centreon-plugin-Network-Cisco-Wap-Snmp/pkg.json b/packaging/centreon-plugin-Network-Cisco-Wap-Snmp/pkg.json new file mode 100644 index 000000000..ddb603e9a --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Wap-Snmp/pkg.json @@ -0,0 +1,14 @@ +{ + "pkg_name": "centreon-plugin-Network-Cisco-Wap-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_cisco_wap_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/uptime.pm", + "snmp_standard/mode/resources/", + "network/cisco/wap/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Cisco-Wap-Snmp/rpm.json b/packaging/centreon-plugin-Network-Cisco-Wap-Snmp/rpm.json new file mode 100644 index 000000000..14e966306 --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Wap-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} diff --git a/packaging/centreon-plugin-Network-Cisco-Wlc-Snmp/deb.json b/packaging/centreon-plugin-Network-Cisco-Wlc-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Wlc-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Cisco-Wlc-Snmp/pkg.json b/packaging/centreon-plugin-Network-Cisco-Wlc-Snmp/pkg.json new file mode 100644 index 000000000..fd2605f52 --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Wlc-Snmp/pkg.json @@ -0,0 +1,14 @@ +{ + "pkg_name": "centreon-plugin-Network-Cisco-Wlc-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_cisco_wlc.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "network/cisco/wlc/snmp/", + "centreon/common/airespace/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Cisco-Wlc-Snmp/rpm.json b/packaging/centreon-plugin-Network-Cisco-Wlc-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Cisco-Wlc-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Citrix-Appacceleration-Snmp/deb.json b/packaging/centreon-plugin-Network-Citrix-Appacceleration-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Citrix-Appacceleration-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Citrix-Appacceleration-Snmp/pkg.json b/packaging/centreon-plugin-Network-Citrix-Appacceleration-Snmp/pkg.json new file mode 100644 index 000000000..8d9d2a06b --- /dev/null +++ b/packaging/centreon-plugin-Network-Citrix-Appacceleration-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Network-Citrix-Appacceleration-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_citrix_appacceleration_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "network/citrix/appacceleration/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Citrix-Appacceleration-Snmp/rpm.json b/packaging/centreon-plugin-Network-Citrix-Appacceleration-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Citrix-Appacceleration-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Citrix-Sdx-Snmp/deb.json b/packaging/centreon-plugin-Network-Citrix-Sdx-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Citrix-Sdx-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Citrix-Sdx-Snmp/pkg.json b/packaging/centreon-plugin-Network-Citrix-Sdx-Snmp/pkg.json new file mode 100644 index 000000000..1f67a16a6 --- /dev/null +++ b/packaging/centreon-plugin-Network-Citrix-Sdx-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Network-Citrix-Sdx-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_citrix_sdx_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "network/citrix/sdx/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Citrix-Sdx-Snmp/rpm.json b/packaging/centreon-plugin-Network-Citrix-Sdx-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Citrix-Sdx-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Colubris-Snmp/deb.json b/packaging/centreon-plugin-Network-Colubris-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Colubris-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Colubris-Snmp/pkg.json b/packaging/centreon-plugin-Network-Colubris-Snmp/pkg.json new file mode 100644 index 000000000..bf9f5ede1 --- /dev/null +++ b/packaging/centreon-plugin-Network-Colubris-Snmp/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Network-Colubris-Snmp", + "pkg_summary": "Centreon Plugin Colubris SNMP", + "plugin_name": "centreon_colubris_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "network/colubris/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Colubris-Snmp/rpm.json b/packaging/centreon-plugin-Network-Colubris-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Colubris-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Cyberoam-Snmp/deb.json b/packaging/centreon-plugin-Network-Cyberoam-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Cyberoam-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Cyberoam-Snmp/pkg.json b/packaging/centreon-plugin-Network-Cyberoam-Snmp/pkg.json new file mode 100644 index 000000000..75e671315 --- /dev/null +++ b/packaging/centreon-plugin-Network-Cyberoam-Snmp/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Network-Cyberoam-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_cyberoam_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "network/cyberoam/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Cyberoam-Snmp/rpm.json b/packaging/centreon-plugin-Network-Cyberoam-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Cyberoam-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Dell-6200/deb.json b/packaging/centreon-plugin-Network-Dell-6200/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Dell-6200/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Dell-6200/pkg.json b/packaging/centreon-plugin-Network-Dell-6200/pkg.json new file mode 100644 index 000000000..851c13623 --- /dev/null +++ b/packaging/centreon-plugin-Network-Dell-6200/pkg.json @@ -0,0 +1,15 @@ +{ + "pkg_name": "centreon-plugin-Network-Dell-6200", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_dell_6200.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "centreon/common/dell/fastpath/", + "centreon/common/dell/powerconnect3000/", + "network/dell/6200/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Dell-6200/rpm.json b/packaging/centreon-plugin-Network-Dell-6200/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Dell-6200/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Dell-Nseries-Snmp/deb.json b/packaging/centreon-plugin-Network-Dell-Nseries-Snmp/deb.json new file mode 100644 index 000000000..6a67257c6 --- /dev/null +++ b/packaging/centreon-plugin-Network-Dell-Nseries-Snmp/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libsnmp-perl", + "libtime-parsedate-perl" + ] +} diff --git a/packaging/centreon-plugin-Network-Dell-Nseries-Snmp/pkg.json b/packaging/centreon-plugin-Network-Dell-Nseries-Snmp/pkg.json new file mode 100644 index 000000000..0002ea459 --- /dev/null +++ b/packaging/centreon-plugin-Network-Dell-Nseries-Snmp/pkg.json @@ -0,0 +1,17 @@ +{ + "pkg_name": "centreon-plugin-Network-Dell-Nseries-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_dell_nseries_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/ntp.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/uptime.pm", + "centreon/common/dell/powerconnect3000/", + "centreon/common/dell/fastpath/", + "network/dell/nseries/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Dell-Nseries-Snmp/rpm.json b/packaging/centreon-plugin-Network-Dell-Nseries-Snmp/rpm.json new file mode 100644 index 000000000..ad0af9ea3 --- /dev/null +++ b/packaging/centreon-plugin-Network-Dell-Nseries-Snmp/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(SNMP)", + "perl(Date::Parse)" + ] +} diff --git a/packaging/centreon-plugin-Network-Dell-Sseries-Snmp/deb.json b/packaging/centreon-plugin-Network-Dell-Sseries-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Dell-Sseries-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Dell-Sseries-Snmp/pkg.json b/packaging/centreon-plugin-Network-Dell-Sseries-Snmp/pkg.json new file mode 100644 index 000000000..e2ad48fb1 --- /dev/null +++ b/packaging/centreon-plugin-Network-Dell-Sseries-Snmp/pkg.json @@ -0,0 +1,14 @@ +{ + "pkg_name": "centreon-plugin-Network-Dell-Sseries-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_dell_sseries_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "centreon/common/force10/snmp/", + "network/dell/sseries/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Dell-Sseries-Snmp/rpm.json b/packaging/centreon-plugin-Network-Dell-Sseries-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Dell-Sseries-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Denyall-Snmp/deb.json b/packaging/centreon-plugin-Network-Denyall-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Denyall-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Denyall-Snmp/pkg.json b/packaging/centreon-plugin-Network-Denyall-Snmp/pkg.json new file mode 100644 index 000000000..3fb7995f6 --- /dev/null +++ b/packaging/centreon-plugin-Network-Denyall-Snmp/pkg.json @@ -0,0 +1,19 @@ +{ + "pkg_name": "centreon-plugin-Network-Denyall-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_denyall_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/cpu.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/loadaverage.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/liststorages.pm", + "snmp_standard/mode/memory.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/storage.pm", + "snmp_standard/mode/swap.pm", + "network/denyall/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Denyall-Snmp/rpm.json b/packaging/centreon-plugin-Network-Denyall-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Denyall-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Digi-AnywhereUSB-Snmp/deb.json b/packaging/centreon-plugin-Network-Digi-AnywhereUSB-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Digi-AnywhereUSB-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Digi-AnywhereUSB-Snmp/pkg.json b/packaging/centreon-plugin-Network-Digi-AnywhereUSB-Snmp/pkg.json new file mode 100644 index 000000000..b2c8fd976 --- /dev/null +++ b/packaging/centreon-plugin-Network-Digi-AnywhereUSB-Snmp/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Network-Digi-AnywhereUSB-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_digi_anywhereusb.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "network/digi/anywhereusb/snmp" + ] +} diff --git a/packaging/centreon-plugin-Network-Digi-AnywhereUSB-Snmp/rpm.json b/packaging/centreon-plugin-Network-Digi-AnywhereUSB-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Digi-AnywhereUSB-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Digi-Portserverts-Snmp/deb.json b/packaging/centreon-plugin-Network-Digi-Portserverts-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Digi-Portserverts-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Digi-Portserverts-Snmp/pkg.json b/packaging/centreon-plugin-Network-Digi-Portserverts-Snmp/pkg.json new file mode 100644 index 000000000..5cac848a9 --- /dev/null +++ b/packaging/centreon-plugin-Network-Digi-Portserverts-Snmp/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Network-Digi-Portserverts-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_digi_portservers.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "network/digi/portserverts/snmp" + ] +} diff --git a/packaging/centreon-plugin-Network-Digi-Portserverts-Snmp/rpm.json b/packaging/centreon-plugin-Network-Digi-Portserverts-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Digi-Portserverts-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Digi-Sarian-Snmp/deb.json b/packaging/centreon-plugin-Network-Digi-Sarian-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Digi-Sarian-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Digi-Sarian-Snmp/pkg.json b/packaging/centreon-plugin-Network-Digi-Sarian-Snmp/pkg.json new file mode 100644 index 000000000..5543e8b5e --- /dev/null +++ b/packaging/centreon-plugin-Network-Digi-Sarian-Snmp/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Network-Digi-Sarian-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_digi_sarian_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "network/digi/sarian/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Digi-Sarian-Snmp/rpm.json b/packaging/centreon-plugin-Network-Digi-Sarian-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Digi-Sarian-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Dlink-Dgs3100-Snmp/deb.json b/packaging/centreon-plugin-Network-Dlink-Dgs3100-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Dlink-Dgs3100-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Dlink-Dgs3100-Snmp/pkg.json b/packaging/centreon-plugin-Network-Dlink-Dgs3100-Snmp/pkg.json new file mode 100644 index 000000000..e8675e74f --- /dev/null +++ b/packaging/centreon-plugin-Network-Dlink-Dgs3100-Snmp/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Network-Dlink-Dgs3100-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_dlink_dgs3100_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "network/dlink/dgs3100/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Dlink-Dgs3100-Snmp/rpm.json b/packaging/centreon-plugin-Network-Dlink-Dgs3100-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Dlink-Dgs3100-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Dlink-Standard-Snmp/deb.json b/packaging/centreon-plugin-Network-Dlink-Standard-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Dlink-Standard-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Dlink-Standard-Snmp/pkg.json b/packaging/centreon-plugin-Network-Dlink-Standard-Snmp/pkg.json new file mode 100644 index 000000000..e94cd7969 --- /dev/null +++ b/packaging/centreon-plugin-Network-Dlink-Standard-Snmp/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Network-Dlink-Standard-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_dlink_standard_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "network/dlink/standard/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Dlink-Standard-Snmp/rpm.json b/packaging/centreon-plugin-Network-Dlink-Standard-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Dlink-Standard-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Efficientip-Snmp/deb.json b/packaging/centreon-plugin-Network-Efficientip-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Efficientip-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Efficientip-Snmp/pkg.json b/packaging/centreon-plugin-Network-Efficientip-Snmp/pkg.json new file mode 100644 index 000000000..982fca6a6 --- /dev/null +++ b/packaging/centreon-plugin-Network-Efficientip-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Network-Efficientip-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_efficientip_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "network/efficientip/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Efficientip-Snmp/rpm.json b/packaging/centreon-plugin-Network-Efficientip-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Efficientip-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Enterasys-Snmp/deb.json b/packaging/centreon-plugin-Network-Enterasys-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Enterasys-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Enterasys-Snmp/pkg.json b/packaging/centreon-plugin-Network-Enterasys-Snmp/pkg.json new file mode 100644 index 000000000..5a3ce27d2 --- /dev/null +++ b/packaging/centreon-plugin-Network-Enterasys-Snmp/pkg.json @@ -0,0 +1,14 @@ +{ + "pkg_name": "centreon-plugin-Network-Enterasys-Snmp", + "pkg_summary": "Centreon Plugin Enterasys SNMP", + "plugin_name": "centreon_enterasys_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/uptime.pm", + "network/enterasys/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Enterasys-Snmp/rpm.json b/packaging/centreon-plugin-Network-Enterasys-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Enterasys-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Evertz-FC7800-Snmp/deb.json b/packaging/centreon-plugin-Network-Evertz-FC7800-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Evertz-FC7800-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Evertz-FC7800-Snmp/pkg.json b/packaging/centreon-plugin-Network-Evertz-FC7800-Snmp/pkg.json new file mode 100644 index 000000000..92c8fee21 --- /dev/null +++ b/packaging/centreon-plugin-Network-Evertz-FC7800-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Network-Evertz-FC7800-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_evertz_fc7800.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "network/evertz/FC7800/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Evertz-FC7800-Snmp/rpm.json b/packaging/centreon-plugin-Network-Evertz-FC7800-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Evertz-FC7800-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Extreme-Snmp/deb.json b/packaging/centreon-plugin-Network-Extreme-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Extreme-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Extreme-Snmp/pkg.json b/packaging/centreon-plugin-Network-Extreme-Snmp/pkg.json new file mode 100644 index 000000000..6367e5b65 --- /dev/null +++ b/packaging/centreon-plugin-Network-Extreme-Snmp/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Network-Extreme-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_extreme.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "network/extreme/snmp" + ] +} diff --git a/packaging/centreon-plugin-Network-Extreme-Snmp/rpm.json b/packaging/centreon-plugin-Network-Extreme-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Extreme-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Fiberstore-Snmp/deb.json b/packaging/centreon-plugin-Network-Fiberstore-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Fiberstore-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Fiberstore-Snmp/pkg.json b/packaging/centreon-plugin-Network-Fiberstore-Snmp/pkg.json new file mode 100644 index 000000000..4396e0437 --- /dev/null +++ b/packaging/centreon-plugin-Network-Fiberstore-Snmp/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Network-Fiberstore-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_fiberstore_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "network/fiberstore/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Fiberstore-Snmp/rpm.json b/packaging/centreon-plugin-Network-Fiberstore-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Fiberstore-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Firewalls-Arkoon-Snmp/deb.json b/packaging/centreon-plugin-Network-Firewalls-Arkoon-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Firewalls-Arkoon-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Firewalls-Arkoon-Snmp/pkg.json b/packaging/centreon-plugin-Network-Firewalls-Arkoon-Snmp/pkg.json new file mode 100644 index 000000000..1bb399010 --- /dev/null +++ b/packaging/centreon-plugin-Network-Firewalls-Arkoon-Snmp/pkg.json @@ -0,0 +1,19 @@ +{ + "pkg_name": "centreon-plugin-Network-Firewalls-Arkoon-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_arkoon.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/loadaverage.pm", + "snmp_standard/mode/memory.pm", + "snmp_standard/mode/swap.pm", + "snmp_standard/mode/inodes.pm", + "snmp_standard/mode/processcount.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/uptime.pm", + "network/arkoon/" + ] +} diff --git a/packaging/centreon-plugin-Network-Firewalls-Arkoon-Snmp/rpm.json b/packaging/centreon-plugin-Network-Firewalls-Arkoon-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Firewalls-Arkoon-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Firewalls-Checkpoint-Snmp/deb.json b/packaging/centreon-plugin-Network-Firewalls-Checkpoint-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Firewalls-Checkpoint-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Firewalls-Checkpoint-Snmp/pkg.json b/packaging/centreon-plugin-Network-Firewalls-Checkpoint-Snmp/pkg.json new file mode 100644 index 000000000..8204b4609 --- /dev/null +++ b/packaging/centreon-plugin-Network-Firewalls-Checkpoint-Snmp/pkg.json @@ -0,0 +1,16 @@ +{ + "pkg_name": "centreon-plugin-Network-Firewalls-Checkpoint-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_checkpoint.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/ntp.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/uptime.pm", + "snmp_standard/mode/vrrp.pm", + "network/checkpoint/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Firewalls-Checkpoint-Snmp/rpm.json b/packaging/centreon-plugin-Network-Firewalls-Checkpoint-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Firewalls-Checkpoint-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Firewalls-Cisco-Asa-Snmp/deb.json b/packaging/centreon-plugin-Network-Firewalls-Cisco-Asa-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Firewalls-Cisco-Asa-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Firewalls-Cisco-Asa-Snmp/pkg.json b/packaging/centreon-plugin-Network-Firewalls-Cisco-Asa-Snmp/pkg.json new file mode 100644 index 000000000..70aa46751 --- /dev/null +++ b/packaging/centreon-plugin-Network-Firewalls-Cisco-Asa-Snmp/pkg.json @@ -0,0 +1,15 @@ +{ + "pkg_name": "centreon-plugin-Network-Firewalls-Cisco-Asa-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_cisco_asa_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/entity.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "centreon/common/cisco/standard/snmp/", + "network/cisco/asa/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Firewalls-Cisco-Asa-Snmp/rpm.json b/packaging/centreon-plugin-Network-Firewalls-Cisco-Asa-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Firewalls-Cisco-Asa-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Firewalls-Fortinet-Fortigate-Snmp/deb.json b/packaging/centreon-plugin-Network-Firewalls-Fortinet-Fortigate-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Firewalls-Fortinet-Fortigate-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Firewalls-Fortinet-Fortigate-Snmp/pkg.json b/packaging/centreon-plugin-Network-Firewalls-Fortinet-Fortigate-Snmp/pkg.json new file mode 100644 index 000000000..552a98c8b --- /dev/null +++ b/packaging/centreon-plugin-Network-Firewalls-Fortinet-Fortigate-Snmp/pkg.json @@ -0,0 +1,14 @@ +{ + "pkg_name": "centreon-plugin-Network-Firewalls-Fortinet-Fortigate-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_fortinet_fortigate.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "centreon/common/fortinet/fortigate/snmp/", + "network/fortinet/fortigate/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Firewalls-Fortinet-Fortigate-Snmp/rpm.json b/packaging/centreon-plugin-Network-Firewalls-Fortinet-Fortigate-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Firewalls-Fortinet-Fortigate-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Firewalls-Juniper-Mag-Snmp/deb.json b/packaging/centreon-plugin-Network-Firewalls-Juniper-Mag-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Firewalls-Juniper-Mag-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Firewalls-Juniper-Mag-Snmp/pkg.json b/packaging/centreon-plugin-Network-Firewalls-Juniper-Mag-Snmp/pkg.json new file mode 100644 index 000000000..fe48c8f88 --- /dev/null +++ b/packaging/centreon-plugin-Network-Firewalls-Juniper-Mag-Snmp/pkg.json @@ -0,0 +1,16 @@ +{ + "pkg_name": "centreon-plugin-Network-Juniper-Mag-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_juniper_mag.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/memory.pm", + "snmp_standard/mode/swap.pm", + "network/juniper/common/ive", + "network/juniper/mag" + ] +} diff --git a/packaging/centreon-plugin-Network-Firewalls-Juniper-Mag-Snmp/rpm.json b/packaging/centreon-plugin-Network-Firewalls-Juniper-Mag-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Firewalls-Juniper-Mag-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Firewalls-Juniper-Sa-Snmp/deb.json b/packaging/centreon-plugin-Network-Firewalls-Juniper-Sa-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Firewalls-Juniper-Sa-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Firewalls-Juniper-Sa-Snmp/pkg.json b/packaging/centreon-plugin-Network-Firewalls-Juniper-Sa-Snmp/pkg.json new file mode 100644 index 000000000..b68815be2 --- /dev/null +++ b/packaging/centreon-plugin-Network-Firewalls-Juniper-Sa-Snmp/pkg.json @@ -0,0 +1,17 @@ +{ + "pkg_name": "centreon-plugin-Network-Firewalls-Juniper-Sa-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_juniper_sa.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/cpudetailed.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/memory.pm", + "snmp_standard/mode/swap.pm", + "network/juniper/common/ive", + "network/juniper/sa" + ] +} diff --git a/packaging/centreon-plugin-Network-Firewalls-Juniper-Sa-Snmp/rpm.json b/packaging/centreon-plugin-Network-Firewalls-Juniper-Sa-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Firewalls-Juniper-Sa-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Firewalls-Juniper-Srx-Snmp/deb.json b/packaging/centreon-plugin-Network-Firewalls-Juniper-Srx-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Firewalls-Juniper-Srx-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Firewalls-Juniper-Srx-Snmp/pkg.json b/packaging/centreon-plugin-Network-Firewalls-Juniper-Srx-Snmp/pkg.json new file mode 100644 index 000000000..81f5d7fd8 --- /dev/null +++ b/packaging/centreon-plugin-Network-Firewalls-Juniper-Srx-Snmp/pkg.json @@ -0,0 +1,16 @@ +{ + "pkg_name": "centreon-plugin-Network-Firewalls-Juniper-Srx-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_juniper_srx.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/liststorages.pm", + "snmp_standard/mode/storage.pm", + "network/juniper/common/junos", + "network/juniper/srx" + ] +} diff --git a/packaging/centreon-plugin-Network-Firewalls-Juniper-Srx-Snmp/rpm.json b/packaging/centreon-plugin-Network-Firewalls-Juniper-Srx-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Firewalls-Juniper-Srx-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Firewalls-Juniper-Ssg-Snmp/deb.json b/packaging/centreon-plugin-Network-Firewalls-Juniper-Ssg-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Firewalls-Juniper-Ssg-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Firewalls-Juniper-Ssg-Snmp/pkg.json b/packaging/centreon-plugin-Network-Firewalls-Juniper-Ssg-Snmp/pkg.json new file mode 100644 index 000000000..ad8b2b89c --- /dev/null +++ b/packaging/centreon-plugin-Network-Firewalls-Juniper-Ssg-Snmp/pkg.json @@ -0,0 +1,14 @@ +{ + "pkg_name": "centreon-plugin-Network-Firewalls-Juniper-Ssg-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_juniper_ssg_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "network/juniper/common/screenos", + "network/juniper/ssg" + ] +} diff --git a/packaging/centreon-plugin-Network-Firewalls-Juniper-Ssg-Snmp/rpm.json b/packaging/centreon-plugin-Network-Firewalls-Juniper-Ssg-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Firewalls-Juniper-Ssg-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Firewalls-Paloalto-Standard-Snmp/deb.json b/packaging/centreon-plugin-Network-Firewalls-Paloalto-Standard-Snmp/deb.json new file mode 100644 index 000000000..88e9c2b4f --- /dev/null +++ b/packaging/centreon-plugin-Network-Firewalls-Paloalto-Standard-Snmp/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libdatetime-perl", + "libsnmp-perl" + ] +} diff --git a/packaging/centreon-plugin-Network-Firewalls-Paloalto-Standard-Snmp/pkg.json b/packaging/centreon-plugin-Network-Firewalls-Paloalto-Standard-Snmp/pkg.json new file mode 100644 index 000000000..11d29a63a --- /dev/null +++ b/packaging/centreon-plugin-Network-Firewalls-Paloalto-Standard-Snmp/pkg.json @@ -0,0 +1,15 @@ +{ + "pkg_name": "centreon-plugin-Network-Firewalls-Paloalto-Standard-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_paloalto.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/hardwaredevice.pm", + "snmp_standard/mode/storage.pm", + "network/paloalto/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Firewalls-Paloalto-Standard-Snmp/rpm.json b/packaging/centreon-plugin-Network-Firewalls-Paloalto-Standard-Snmp/rpm.json new file mode 100644 index 000000000..996b83818 --- /dev/null +++ b/packaging/centreon-plugin-Network-Firewalls-Paloalto-Standard-Snmp/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(SNMP)" + ] +} diff --git a/packaging/centreon-plugin-Network-Firewalls-Paloalto-Standard-Ssh/deb.json b/packaging/centreon-plugin-Network-Firewalls-Paloalto-Standard-Ssh/deb.json new file mode 100644 index 000000000..bda1b607d --- /dev/null +++ b/packaging/centreon-plugin-Network-Firewalls-Paloalto-Standard-Ssh/deb.json @@ -0,0 +1,8 @@ +{ + "dependencies": [ + "plink", + "libssh-session-perl", + "libxml-simple-perl", + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Network-Firewalls-Paloalto-Standard-Ssh/pkg.json b/packaging/centreon-plugin-Network-Firewalls-Paloalto-Standard-Ssh/pkg.json new file mode 100644 index 000000000..23294bb2f --- /dev/null +++ b/packaging/centreon-plugin-Network-Firewalls-Paloalto-Standard-Ssh/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Network-Firewalls-Paloalto-Standard-Ssh", + "pkg_summary": "Centreon Plugin Palo Alto SSH", + "plugin_name": "centreon_paloalto_ssh.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/plugins/backend/ssh/", + "centreon/plugins/ssh.pm", + "network/paloalto/ssh/" + ] +} diff --git a/packaging/centreon-plugin-Network-Firewalls-Paloalto-Standard-Ssh/rpm.json b/packaging/centreon-plugin-Network-Firewalls-Paloalto-Standard-Ssh/rpm.json new file mode 100644 index 000000000..8bd1134e0 --- /dev/null +++ b/packaging/centreon-plugin-Network-Firewalls-Paloalto-Standard-Ssh/rpm.json @@ -0,0 +1,8 @@ +{ + "dependencies": [ + "plink", + "perl(Libssh::Session)", + "perl(DateTime)", + "perl(XML::Simple)" + ] +} diff --git a/packaging/centreon-plugin-Network-Firewalls-Pfsense-Snmp/deb.json b/packaging/centreon-plugin-Network-Firewalls-Pfsense-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Firewalls-Pfsense-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Firewalls-Pfsense-Snmp/pkg.json b/packaging/centreon-plugin-Network-Firewalls-Pfsense-Snmp/pkg.json new file mode 100644 index 000000000..fc0ca653a --- /dev/null +++ b/packaging/centreon-plugin-Network-Firewalls-Pfsense-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Network-Firewalls-Pfsense-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_pfsense.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "apps/pfsense/snmp" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Firewalls-Pfsense-Snmp/rpm.json b/packaging/centreon-plugin-Network-Firewalls-Pfsense-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Firewalls-Pfsense-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Firewalls-Sonicwall-Snmp/deb.json b/packaging/centreon-plugin-Network-Firewalls-Sonicwall-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Firewalls-Sonicwall-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Firewalls-Sonicwall-Snmp/pkg.json b/packaging/centreon-plugin-Network-Firewalls-Sonicwall-Snmp/pkg.json new file mode 100644 index 000000000..9cac8a68e --- /dev/null +++ b/packaging/centreon-plugin-Network-Firewalls-Sonicwall-Snmp/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Network-Firewalls-Sonicwall-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_sonicwall_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "network/sonicwall/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Firewalls-Sonicwall-Snmp/rpm.json b/packaging/centreon-plugin-Network-Firewalls-Sonicwall-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Firewalls-Sonicwall-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Firewalls-Stonesoft/deb.json b/packaging/centreon-plugin-Network-Firewalls-Stonesoft/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Firewalls-Stonesoft/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Firewalls-Stonesoft/pkg.json b/packaging/centreon-plugin-Network-Firewalls-Stonesoft/pkg.json new file mode 100644 index 000000000..976cec001 --- /dev/null +++ b/packaging/centreon-plugin-Network-Firewalls-Stonesoft/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Network-Firewalls-Stonesoft", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_stonesoft.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "network/stonesoft/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Firewalls-Stonesoft/rpm.json b/packaging/centreon-plugin-Network-Firewalls-Stonesoft/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Firewalls-Stonesoft/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Fortinet-Fortiadc-Snmp/deb.json b/packaging/centreon-plugin-Network-Fortinet-Fortiadc-Snmp/deb.json new file mode 100644 index 000000000..5d24d64c4 --- /dev/null +++ b/packaging/centreon-plugin-Network-Fortinet-Fortiadc-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} diff --git a/packaging/centreon-plugin-Network-Fortinet-Fortiadc-Snmp/pkg.json b/packaging/centreon-plugin-Network-Fortinet-Fortiadc-Snmp/pkg.json new file mode 100644 index 000000000..60d56fae1 --- /dev/null +++ b/packaging/centreon-plugin-Network-Fortinet-Fortiadc-Snmp/pkg.json @@ -0,0 +1,15 @@ +{ + "pkg_name": "centreon-plugin-Network-Fortinet-Fortiadc-Snmp", + "pkg_summary": "Centreon Plugin Fortinet FortiADC SNMP", + "plugin_name": "centreon_fortinet_fortiadc_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/arp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/uptime.pm", + "network/fortinet/fortiadc/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Fortinet-Fortiadc-Snmp/rpm.json b/packaging/centreon-plugin-Network-Fortinet-Fortiadc-Snmp/rpm.json new file mode 100644 index 000000000..14e966306 --- /dev/null +++ b/packaging/centreon-plugin-Network-Fortinet-Fortiadc-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} diff --git a/packaging/centreon-plugin-Network-Fortinet-Fortiauthenticator-Snmp/deb.json b/packaging/centreon-plugin-Network-Fortinet-Fortiauthenticator-Snmp/deb.json new file mode 100644 index 000000000..5d24d64c4 --- /dev/null +++ b/packaging/centreon-plugin-Network-Fortinet-Fortiauthenticator-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} diff --git a/packaging/centreon-plugin-Network-Fortinet-Fortiauthenticator-Snmp/pkg.json b/packaging/centreon-plugin-Network-Fortinet-Fortiauthenticator-Snmp/pkg.json new file mode 100644 index 000000000..140d44d46 --- /dev/null +++ b/packaging/centreon-plugin-Network-Fortinet-Fortiauthenticator-Snmp/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Network-Fortinet-Fortiauthenticator-Snmp", + "pkg_summary": "Centreon Plugin Fortinet Fortiauthenticator SNMP", + "plugin_name": "centreon_fortinet_fortiauthenticator_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "network/fortinet/fortiauthenticator/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Fortinet-Fortiauthenticator-Snmp/rpm.json b/packaging/centreon-plugin-Network-Fortinet-Fortiauthenticator-Snmp/rpm.json new file mode 100644 index 000000000..14e966306 --- /dev/null +++ b/packaging/centreon-plugin-Network-Fortinet-Fortiauthenticator-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} diff --git a/packaging/centreon-plugin-Network-Fortinet-Fortigate-Restapi/deb.json b/packaging/centreon-plugin-Network-Fortinet-Fortigate-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Network-Fortinet-Fortigate-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Network-Fortinet-Fortigate-Restapi/pkg.json b/packaging/centreon-plugin-Network-Fortinet-Fortigate-Restapi/pkg.json new file mode 100644 index 000000000..30acdac50 --- /dev/null +++ b/packaging/centreon-plugin-Network-Fortinet-Fortigate-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Network-Fortinet-Fortigate-Restapi", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_fortinet_fortigate_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "network/fortinet/fortigate/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Network-Fortinet-Fortigate-Restapi/rpm.json b/packaging/centreon-plugin-Network-Fortinet-Fortigate-Restapi/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Network-Fortinet-Fortigate-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Network-Fortinet-Fortimanager-Snmp/deb.json b/packaging/centreon-plugin-Network-Fortinet-Fortimanager-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Fortinet-Fortimanager-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Fortinet-Fortimanager-Snmp/pkg.json b/packaging/centreon-plugin-Network-Fortinet-Fortimanager-Snmp/pkg.json new file mode 100644 index 000000000..e02a8faf3 --- /dev/null +++ b/packaging/centreon-plugin-Network-Fortinet-Fortimanager-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Network-Fortinet-Fortimanager-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_fortinet_fortimanager_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "network/fortinet/fortimanager/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Fortinet-Fortimanager-Snmp/rpm.json b/packaging/centreon-plugin-Network-Fortinet-Fortimanager-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Fortinet-Fortimanager-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Fortinet-Fortiswitch-Snmp/deb.json b/packaging/centreon-plugin-Network-Fortinet-Fortiswitch-Snmp/deb.json new file mode 100644 index 000000000..5d24d64c4 --- /dev/null +++ b/packaging/centreon-plugin-Network-Fortinet-Fortiswitch-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} diff --git a/packaging/centreon-plugin-Network-Fortinet-Fortiswitch-Snmp/pkg.json b/packaging/centreon-plugin-Network-Fortinet-Fortiswitch-Snmp/pkg.json new file mode 100644 index 000000000..85ffa2a9b --- /dev/null +++ b/packaging/centreon-plugin-Network-Fortinet-Fortiswitch-Snmp/pkg.json @@ -0,0 +1,15 @@ +{ + "pkg_name": "centreon-plugin-Network-Fortinet-Fortiswitch-Snmp", + "pkg_summary": "Centreon Plugin Fortinet FortiSwitch SNMP", + "plugin_name": "centreon_fortinet_fortiswitch_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/arp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/uptime.pm", + "network/fortinet/fortiswitch/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Fortinet-Fortiswitch-Snmp/rpm.json b/packaging/centreon-plugin-Network-Fortinet-Fortiswitch-Snmp/rpm.json new file mode 100644 index 000000000..14e966306 --- /dev/null +++ b/packaging/centreon-plugin-Network-Fortinet-Fortiswitch-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} diff --git a/packaging/centreon-plugin-Network-Fortinet-Fortiweb-Snmp/deb.json b/packaging/centreon-plugin-Network-Fortinet-Fortiweb-Snmp/deb.json new file mode 100644 index 000000000..5d24d64c4 --- /dev/null +++ b/packaging/centreon-plugin-Network-Fortinet-Fortiweb-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} diff --git a/packaging/centreon-plugin-Network-Fortinet-Fortiweb-Snmp/pkg.json b/packaging/centreon-plugin-Network-Fortinet-Fortiweb-Snmp/pkg.json new file mode 100644 index 000000000..9064d5787 --- /dev/null +++ b/packaging/centreon-plugin-Network-Fortinet-Fortiweb-Snmp/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Network-Fortinet-Fortiweb-Snmp", + "pkg_summary": "Centreon Plugin Fortinet FortiWeb SNMP", + "plugin_name": "centreon_fortinet_fortiweb_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "network/fortinet/fortiweb/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Fortinet-Fortiweb-Snmp/rpm.json b/packaging/centreon-plugin-Network-Fortinet-Fortiweb-Snmp/rpm.json new file mode 100644 index 000000000..14e966306 --- /dev/null +++ b/packaging/centreon-plugin-Network-Fortinet-Fortiweb-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} diff --git a/packaging/centreon-plugin-Network-Freebox-Restapi/deb.json b/packaging/centreon-plugin-Network-Freebox-Restapi/deb.json new file mode 100644 index 000000000..712e3dde7 --- /dev/null +++ b/packaging/centreon-plugin-Network-Freebox-Restapi/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libdigest-sha-perl", + "libjson-perl" + ] +} diff --git a/packaging/centreon-plugin-Network-Freebox-Restapi/pkg.json b/packaging/centreon-plugin-Network-Freebox-Restapi/pkg.json new file mode 100644 index 000000000..9939de285 --- /dev/null +++ b/packaging/centreon-plugin-Network-Freebox-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Network-Freebox-Restapi", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_freebox_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "network/freebox/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Network-Freebox-Restapi/rpm.json b/packaging/centreon-plugin-Network-Freebox-Restapi/rpm.json new file mode 100644 index 000000000..6b9d3f4a1 --- /dev/null +++ b/packaging/centreon-plugin-Network-Freebox-Restapi/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(Digest::SHA)", + "perl(JSON)" + ] +} diff --git a/packaging/centreon-plugin-Network-Fritzbox-Upnp/deb.json b/packaging/centreon-plugin-Network-Fritzbox-Upnp/deb.json new file mode 100644 index 000000000..0433b6ba0 --- /dev/null +++ b/packaging/centreon-plugin-Network-Fritzbox-Upnp/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libxml-libxml-simple-perl", + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Network-Fritzbox-Upnp/pkg.json b/packaging/centreon-plugin-Network-Fritzbox-Upnp/pkg.json new file mode 100644 index 000000000..6f2dada0e --- /dev/null +++ b/packaging/centreon-plugin-Network-Fritzbox-Upnp/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Network-Fritzbox-Upnp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_fritzbox_upnp.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "network/fritzbox/upnp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Fritzbox-Upnp/rpm.json b/packaging/centreon-plugin-Network-Fritzbox-Upnp/rpm.json new file mode 100644 index 000000000..966c72f22 --- /dev/null +++ b/packaging/centreon-plugin-Network-Fritzbox-Upnp/rpm.json @@ -0,0 +1,8 @@ +{ + "dependencies": [ + "perl(XML::LibXML::Simple)", + "perl(DateTime)", + "perl(Digest::SHA)" + ], + "custom_pkg_data": "Obsoletes: centreon-plugin-Network-Fritzbox" +} diff --git a/packaging/centreon-plugin-Network-Generic-Bluecoat-Snmp/deb.json b/packaging/centreon-plugin-Network-Generic-Bluecoat-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Generic-Bluecoat-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Generic-Bluecoat-Snmp/pkg.json b/packaging/centreon-plugin-Network-Generic-Bluecoat-Snmp/pkg.json new file mode 100644 index 000000000..a86d35e43 --- /dev/null +++ b/packaging/centreon-plugin-Network-Generic-Bluecoat-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Network-Generic-Bluecoat-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_bluecoat.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "network/bluecoat/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Generic-Bluecoat-Snmp/rpm.json b/packaging/centreon-plugin-Network-Generic-Bluecoat-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Generic-Bluecoat-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-H3c-Snmp/deb.json b/packaging/centreon-plugin-Network-H3c-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-H3c-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-H3c-Snmp/pkg.json b/packaging/centreon-plugin-Network-H3c-Snmp/pkg.json new file mode 100644 index 000000000..f5d2e2fed --- /dev/null +++ b/packaging/centreon-plugin-Network-H3c-Snmp/pkg.json @@ -0,0 +1,14 @@ +{ + "pkg_name": "centreon-plugin-Network-H3c-Snmp", + "pkg_summary": "Centreon Plugin to monitor H3C switches using SNMP", + "plugin_name": "centreon_h3c.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "centreon/common/h3c/snmp", + "network/h3c/snmp" + ] +} diff --git a/packaging/centreon-plugin-Network-H3c-Snmp/rpm.json b/packaging/centreon-plugin-Network-H3c-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-H3c-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Hp-Moonshot-Snmp/deb.json b/packaging/centreon-plugin-Network-Hp-Moonshot-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Hp-Moonshot-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Hp-Moonshot-Snmp/pkg.json b/packaging/centreon-plugin-Network-Hp-Moonshot-Snmp/pkg.json new file mode 100644 index 000000000..c78d2e30b --- /dev/null +++ b/packaging/centreon-plugin-Network-Hp-Moonshot-Snmp/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Network-Hp-Moonshot-Snmp", + "pkg_summary": "Centreon Plugin to monitor HP Moonshot Switch Module using SNMP", + "plugin_name": "centreon_hp_moonshot_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "network/hp/moonshot/snmp" + ] +} diff --git a/packaging/centreon-plugin-Network-Hp-Moonshot-Snmp/rpm.json b/packaging/centreon-plugin-Network-Hp-Moonshot-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Hp-Moonshot-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Hp-Standard-Snmp/deb.json b/packaging/centreon-plugin-Network-Hp-Standard-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Hp-Standard-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Hp-Standard-Snmp/pkg.json b/packaging/centreon-plugin-Network-Hp-Standard-Snmp/pkg.json new file mode 100644 index 000000000..bfe020568 --- /dev/null +++ b/packaging/centreon-plugin-Network-Hp-Standard-Snmp/pkg.json @@ -0,0 +1,17 @@ +{ + "pkg_name": "centreon-plugin-Network-Hp-Standard-Snmp", + "pkg_summary": "Centreon Plugin to monitor HP switches using SNMP", + "plugin_name": "centreon_hp_standard_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/listspanningtrees.pm", + "snmp_standard/mode/spanningtree.pm", + "snmp_standard/mode/uptime.pm", + "centreon/common/h3c/snmp", + "network/hp/standard/snmp" + ] +} diff --git a/packaging/centreon-plugin-Network-Hp-Standard-Snmp/rpm.json b/packaging/centreon-plugin-Network-Hp-Standard-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Hp-Standard-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Hp-Vc-Snmp/deb.json b/packaging/centreon-plugin-Network-Hp-Vc-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Hp-Vc-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Hp-Vc-Snmp/pkg.json b/packaging/centreon-plugin-Network-Hp-Vc-Snmp/pkg.json new file mode 100644 index 000000000..5ef4372de --- /dev/null +++ b/packaging/centreon-plugin-Network-Hp-Vc-Snmp/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Network-Hp-Vc-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_hp_vc.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "network/hp/vc/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Hp-Vc-Snmp/rpm.json b/packaging/centreon-plugin-Network-Hp-Vc-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Hp-Vc-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Huawei-Snmp/deb.json b/packaging/centreon-plugin-Network-Huawei-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Huawei-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Huawei-Snmp/pkg.json b/packaging/centreon-plugin-Network-Huawei-Snmp/pkg.json new file mode 100644 index 000000000..967bc2c81 --- /dev/null +++ b/packaging/centreon-plugin-Network-Huawei-Snmp/pkg.json @@ -0,0 +1,14 @@ +{ + "pkg_name": "centreon-plugin-Network-Huawei-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_huawei_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/uptime.pm", + "network/huawei/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Huawei-Snmp/rpm.json b/packaging/centreon-plugin-Network-Huawei-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Huawei-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Ibm-Bladecenter-Snmp/deb.json b/packaging/centreon-plugin-Network-Ibm-Bladecenter-Snmp/deb.json new file mode 100644 index 000000000..d6332336f --- /dev/null +++ b/packaging/centreon-plugin-Network-Ibm-Bladecenter-Snmp/deb.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "libsnmp-perl", + "libdatetime-perl", + "libnet-ntp-perl" + ] +} diff --git a/packaging/centreon-plugin-Network-Ibm-Bladecenter-Snmp/pkg.json b/packaging/centreon-plugin-Network-Ibm-Bladecenter-Snmp/pkg.json new file mode 100644 index 000000000..989c69d58 --- /dev/null +++ b/packaging/centreon-plugin-Network-Ibm-Bladecenter-Snmp/pkg.json @@ -0,0 +1,17 @@ +{ + "pkg_name": "centreon-plugin-Network-Ibm-Bladecenter-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_net_ibm_bladecenter_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "network/ibm/bladecenter/snmp/", + "centreon/common/ibm/nos/", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/ntp.pm", + "snmp_standard/mode/uptime.pm", + "snmp_standard/mode/storage.pm", + "snmp_standard/mode/resources/" + ] +} diff --git a/packaging/centreon-plugin-Network-Ibm-Bladecenter-Snmp/rpm.json b/packaging/centreon-plugin-Network-Ibm-Bladecenter-Snmp/rpm.json new file mode 100644 index 000000000..ee7af3819 --- /dev/null +++ b/packaging/centreon-plugin-Network-Ibm-Bladecenter-Snmp/rpm.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "perl(SNMP)", + "perl(DateTime)", + "perl(Net::NTP)" + ] +} diff --git a/packaging/centreon-plugin-Network-Infoblox-Snmp/deb.json b/packaging/centreon-plugin-Network-Infoblox-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Infoblox-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Infoblox-Snmp/pkg.json b/packaging/centreon-plugin-Network-Infoblox-Snmp/pkg.json new file mode 100644 index 000000000..8e9f73ce6 --- /dev/null +++ b/packaging/centreon-plugin-Network-Infoblox-Snmp/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Network-Infoblox-Snmp", + "pkg_summary": "Centreon Plugin Infoblox SNMP", + "plugin_name": "centreon_infoblox_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "network/infoblox/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Infoblox-Snmp/rpm.json b/packaging/centreon-plugin-Network-Infoblox-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Infoblox-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Juniper-Ggsn-Snmp/deb.json b/packaging/centreon-plugin-Network-Juniper-Ggsn-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Juniper-Ggsn-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Juniper-Ggsn-Snmp/pkg.json b/packaging/centreon-plugin-Network-Juniper-Ggsn-Snmp/pkg.json new file mode 100644 index 000000000..4c64b0d76 --- /dev/null +++ b/packaging/centreon-plugin-Network-Juniper-Ggsn-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Network-Juniper-Ggsn-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_juniper_ggsn.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "network/juniper/ggsn/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Juniper-Ggsn-Snmp/rpm.json b/packaging/centreon-plugin-Network-Juniper-Ggsn-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Juniper-Ggsn-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Juniper-Isg-Snmp/deb.json b/packaging/centreon-plugin-Network-Juniper-Isg-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Juniper-Isg-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Juniper-Isg-Snmp/pkg.json b/packaging/centreon-plugin-Network-Juniper-Isg-Snmp/pkg.json new file mode 100644 index 000000000..2f2f99a32 --- /dev/null +++ b/packaging/centreon-plugin-Network-Juniper-Isg-Snmp/pkg.json @@ -0,0 +1,14 @@ +{ + "pkg_name": "centreon-plugin-Network-Juniper-Isg-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_juniper_isg_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "network/juniper/common/screenos/snmp/", + "network/juniper/isg/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Juniper-Isg-Snmp/rpm.json b/packaging/centreon-plugin-Network-Juniper-Isg-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Juniper-Isg-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Juniper-Trapeze-Snmp/deb.json b/packaging/centreon-plugin-Network-Juniper-Trapeze-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Juniper-Trapeze-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Juniper-Trapeze-Snmp/pkg.json b/packaging/centreon-plugin-Network-Juniper-Trapeze-Snmp/pkg.json new file mode 100644 index 000000000..46b24f5da --- /dev/null +++ b/packaging/centreon-plugin-Network-Juniper-Trapeze-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Network-Juniper-Trapeze-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_juniper_trapeze.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "network/juniper/trapeze/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Juniper-Trapeze-Snmp/rpm.json b/packaging/centreon-plugin-Network-Juniper-Trapeze-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Juniper-Trapeze-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Lenovo-Flexsystem-Snmp/deb.json b/packaging/centreon-plugin-Network-Lenovo-Flexsystem-Snmp/deb.json new file mode 100644 index 000000000..d6332336f --- /dev/null +++ b/packaging/centreon-plugin-Network-Lenovo-Flexsystem-Snmp/deb.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "libsnmp-perl", + "libdatetime-perl", + "libnet-ntp-perl" + ] +} diff --git a/packaging/centreon-plugin-Network-Lenovo-Flexsystem-Snmp/pkg.json b/packaging/centreon-plugin-Network-Lenovo-Flexsystem-Snmp/pkg.json new file mode 100644 index 000000000..1ae23c124 --- /dev/null +++ b/packaging/centreon-plugin-Network-Lenovo-Flexsystem-Snmp/pkg.json @@ -0,0 +1,17 @@ +{ + "pkg_name": "centreon-plugin-Network-Lenovo-Flexsystem-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_net_lenovo_flexsystem_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "network/lenovo/flexsystem/snmp/", + "centreon/common/ibm/nos/snmp/mode/disk.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/ntp.pm", + "snmp_standard/mode/uptime.pm", + "snmp_standard/mode/storage.pm", + "snmp_standard/mode/resources/" + ] +} diff --git a/packaging/centreon-plugin-Network-Lenovo-Flexsystem-Snmp/rpm.json b/packaging/centreon-plugin-Network-Lenovo-Flexsystem-Snmp/rpm.json new file mode 100644 index 000000000..ee7af3819 --- /dev/null +++ b/packaging/centreon-plugin-Network-Lenovo-Flexsystem-Snmp/rpm.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "perl(SNMP)", + "perl(DateTime)", + "perl(Net::NTP)" + ] +} diff --git a/packaging/centreon-plugin-Network-Lenovo-Rackswitch-Snmp/deb.json b/packaging/centreon-plugin-Network-Lenovo-Rackswitch-Snmp/deb.json new file mode 100644 index 000000000..5d24d64c4 --- /dev/null +++ b/packaging/centreon-plugin-Network-Lenovo-Rackswitch-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} diff --git a/packaging/centreon-plugin-Network-Lenovo-Rackswitch-Snmp/pkg.json b/packaging/centreon-plugin-Network-Lenovo-Rackswitch-Snmp/pkg.json new file mode 100644 index 000000000..1de8fcaca --- /dev/null +++ b/packaging/centreon-plugin-Network-Lenovo-Rackswitch-Snmp/pkg.json @@ -0,0 +1,14 @@ +{ + "pkg_name": "centreon-plugin-Network-Lenovo-Rackswitch-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_lenovo_rackswitch_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/uptime.pm", + "network/lenovo/rackswitch/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Lenovo-Rackswitch-Snmp/rpm.json b/packaging/centreon-plugin-Network-Lenovo-Rackswitch-Snmp/rpm.json new file mode 100644 index 000000000..14e966306 --- /dev/null +++ b/packaging/centreon-plugin-Network-Lenovo-Rackswitch-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} diff --git a/packaging/centreon-plugin-Network-Libraesva-Snmp/deb.json b/packaging/centreon-plugin-Network-Libraesva-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Libraesva-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Libraesva-Snmp/pkg.json b/packaging/centreon-plugin-Network-Libraesva-Snmp/pkg.json new file mode 100644 index 000000000..4b5ef07d8 --- /dev/null +++ b/packaging/centreon-plugin-Network-Libraesva-Snmp/pkg.json @@ -0,0 +1,18 @@ +{ + "pkg_name": "centreon-plugin-Network-Libraesva-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_libraesva_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/liststorages.pm", + "snmp_standard/mode/loadaverage.pm", + "snmp_standard/mode/memory.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/storage.pm", + "snmp_standard/mode/swap.pm", + "network/libraesva/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Libraesva-Snmp/rpm.json b/packaging/centreon-plugin-Network-Libraesva-Snmp/rpm.json new file mode 100644 index 000000000..14e966306 --- /dev/null +++ b/packaging/centreon-plugin-Network-Libraesva-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} diff --git a/packaging/centreon-plugin-Network-Loadbalancers-A10-AX-Snmp/deb.json b/packaging/centreon-plugin-Network-Loadbalancers-A10-AX-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Loadbalancers-A10-AX-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Loadbalancers-A10-AX-Snmp/pkg.json b/packaging/centreon-plugin-Network-Loadbalancers-A10-AX-Snmp/pkg.json new file mode 100644 index 000000000..9fece5dae --- /dev/null +++ b/packaging/centreon-plugin-Network-Loadbalancers-A10-AX-Snmp/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Network-Loadbalancers-A10-AX-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_a10_ax_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "network/a10/ax/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Loadbalancers-A10-AX-Snmp/rpm.json b/packaging/centreon-plugin-Network-Loadbalancers-A10-AX-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Loadbalancers-A10-AX-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Loadbalancers-F5-Bigip-Snmp/deb.json b/packaging/centreon-plugin-Network-Loadbalancers-F5-Bigip-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Loadbalancers-F5-Bigip-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Loadbalancers-F5-Bigip-Snmp/pkg.json b/packaging/centreon-plugin-Network-Loadbalancers-F5-Bigip-Snmp/pkg.json new file mode 100644 index 000000000..a739567e6 --- /dev/null +++ b/packaging/centreon-plugin-Network-Loadbalancers-F5-Bigip-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Network-Loadbalancers-F5-Bigip-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_f5_bigip_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "network/f5/bigip/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Loadbalancers-F5-Bigip-Snmp/rpm.json b/packaging/centreon-plugin-Network-Loadbalancers-F5-Bigip-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Loadbalancers-F5-Bigip-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Loadbalancers-Kemp-Snmp/deb.json b/packaging/centreon-plugin-Network-Loadbalancers-Kemp-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Loadbalancers-Kemp-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Loadbalancers-Kemp-Snmp/pkg.json b/packaging/centreon-plugin-Network-Loadbalancers-Kemp-Snmp/pkg.json new file mode 100644 index 000000000..033d45ae3 --- /dev/null +++ b/packaging/centreon-plugin-Network-Loadbalancers-Kemp-Snmp/pkg.json @@ -0,0 +1,16 @@ +{ + "pkg_name": "centreon-plugin-Network-Loadbalancers-Kemp-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_kemp_loadbalancers.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/cpudetailed.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/loadaverage.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/memory.pm", + "network/kemp/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Loadbalancers-Kemp-Snmp/rpm.json b/packaging/centreon-plugin-Network-Loadbalancers-Kemp-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Loadbalancers-Kemp-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Loadbalancers-Netscaler-Snmp/deb.json b/packaging/centreon-plugin-Network-Loadbalancers-Netscaler-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Loadbalancers-Netscaler-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Loadbalancers-Netscaler-Snmp/pkg.json b/packaging/centreon-plugin-Network-Loadbalancers-Netscaler-Snmp/pkg.json new file mode 100644 index 000000000..ab30978dd --- /dev/null +++ b/packaging/centreon-plugin-Network-Loadbalancers-Netscaler-Snmp/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Network-Loadbalancers-Netscaler-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_netscaler.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "network/citrix/netscaler/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Loadbalancers-Netscaler-Snmp/rpm.json b/packaging/centreon-plugin-Network-Loadbalancers-Netscaler-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Loadbalancers-Netscaler-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Meru-Snmp/deb.json b/packaging/centreon-plugin-Network-Meru-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Meru-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Meru-Snmp/pkg.json b/packaging/centreon-plugin-Network-Meru-Snmp/pkg.json new file mode 100644 index 000000000..a9e771aac --- /dev/null +++ b/packaging/centreon-plugin-Network-Meru-Snmp/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Network-Meru-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_meru_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "network/meru/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Meru-Snmp/rpm.json b/packaging/centreon-plugin-Network-Meru-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Meru-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Microsens-G6-Snmp/deb.json b/packaging/centreon-plugin-Network-Microsens-G6-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Microsens-G6-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Microsens-G6-Snmp/pkg.json b/packaging/centreon-plugin-Network-Microsens-G6-Snmp/pkg.json new file mode 100644 index 000000000..87c0d864d --- /dev/null +++ b/packaging/centreon-plugin-Network-Microsens-G6-Snmp/pkg.json @@ -0,0 +1,17 @@ +{ + "pkg_name": "centreon-plugin-Network-Microsens-G6-Snmp", + "pkg_summary": "Centreon Plugin Microsens G6 SNMP", + "plugin_name": "centreon_microsens_g6_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/cpudetailed.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/loadaverage.pm", + "snmp_standard/mode/memory.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/uptime.pm", + "network/microsens/g6/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Microsens-G6-Snmp/rpm.json b/packaging/centreon-plugin-Network-Microsens-G6-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Microsens-G6-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Mikrotik-Snmp/deb.json b/packaging/centreon-plugin-Network-Mikrotik-Snmp/deb.json new file mode 100644 index 000000000..91275fe90 --- /dev/null +++ b/packaging/centreon-plugin-Network-Mikrotik-Snmp/deb.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "libsnmp-perl", + "libdatetime-perl", + "libnet-ntp-perl" + ] +} diff --git a/packaging/centreon-plugin-Network-Mikrotik-Snmp/pkg.json b/packaging/centreon-plugin-Network-Mikrotik-Snmp/pkg.json new file mode 100644 index 000000000..53f4f0012 --- /dev/null +++ b/packaging/centreon-plugin-Network-Mikrotik-Snmp/pkg.json @@ -0,0 +1,17 @@ +{ + "pkg_name": "centreon-plugin-Network-Mikrotik-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_mikrotik_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/cpu.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/ntp.pm", + "snmp_standard/mode/storage.pm", + "snmp_standard/mode/uptime.pm", + "network/mikrotik/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Mikrotik-Snmp/rpm.json b/packaging/centreon-plugin-Network-Mikrotik-Snmp/rpm.json new file mode 100644 index 000000000..a856a83ea --- /dev/null +++ b/packaging/centreon-plugin-Network-Mikrotik-Snmp/rpm.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "perl(SNMP)", + "perl(DateTime)", + "perl(Net::NTP)" + ] +} diff --git a/packaging/centreon-plugin-Network-Mitel-3300icp-Snmp/deb.json b/packaging/centreon-plugin-Network-Mitel-3300icp-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Mitel-3300icp-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Mitel-3300icp-Snmp/pkg.json b/packaging/centreon-plugin-Network-Mitel-3300icp-Snmp/pkg.json new file mode 100644 index 000000000..9011b1bab --- /dev/null +++ b/packaging/centreon-plugin-Network-Mitel-3300icp-Snmp/pkg.json @@ -0,0 +1,14 @@ +{ + "pkg_name": "centreon-plugin-Network-Mitel-3300icp-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_mitel_3300icp_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/uptime.pm", + "network/mitel/3300icp/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Mitel-3300icp-Snmp/rpm.json b/packaging/centreon-plugin-Network-Mitel-3300icp-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Mitel-3300icp-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Netgear-Mseries-Snmp/deb.json b/packaging/centreon-plugin-Network-Netgear-Mseries-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Netgear-Mseries-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Netgear-Mseries-Snmp/pkg.json b/packaging/centreon-plugin-Network-Netgear-Mseries-Snmp/pkg.json new file mode 100644 index 000000000..c527bb2f5 --- /dev/null +++ b/packaging/centreon-plugin-Network-Netgear-Mseries-Snmp/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Network-Netgear-Mseries-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_netgear_mseries_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "network/netgear/mseries/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Netgear-Mseries-Snmp/rpm.json b/packaging/centreon-plugin-Network-Netgear-Mseries-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Netgear-Mseries-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Netgear-Sseries-Snmp/deb.json b/packaging/centreon-plugin-Network-Netgear-Sseries-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Netgear-Sseries-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Netgear-Sseries-Snmp/pkg.json b/packaging/centreon-plugin-Network-Netgear-Sseries-Snmp/pkg.json new file mode 100644 index 000000000..f7ca0f426 --- /dev/null +++ b/packaging/centreon-plugin-Network-Netgear-Sseries-Snmp/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Network-Netgear-Sseries-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_netgear_sseries_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "network/netgear/sseries/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Netgear-Sseries-Snmp/rpm.json b/packaging/centreon-plugin-Network-Netgear-Sseries-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Netgear-Sseries-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Nokia-Timos-Snmp/deb.json b/packaging/centreon-plugin-Network-Nokia-Timos-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Nokia-Timos-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Nokia-Timos-Snmp/pkg.json b/packaging/centreon-plugin-Network-Nokia-Timos-Snmp/pkg.json new file mode 100644 index 000000000..05798e59b --- /dev/null +++ b/packaging/centreon-plugin-Network-Nokia-Timos-Snmp/pkg.json @@ -0,0 +1,14 @@ +{ + "pkg_name": "centreon-plugin-Network-Nokia-Timos-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_nokia_timos_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/uptime.pm", + "network/nokia/timos/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Nokia-Timos-Snmp/rpm.json b/packaging/centreon-plugin-Network-Nokia-Timos-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Nokia-Timos-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Nortel-Standard-Snmp/deb.json b/packaging/centreon-plugin-Network-Nortel-Standard-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Nortel-Standard-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Nortel-Standard-Snmp/pkg.json b/packaging/centreon-plugin-Network-Nortel-Standard-Snmp/pkg.json new file mode 100644 index 000000000..53b51b692 --- /dev/null +++ b/packaging/centreon-plugin-Network-Nortel-Standard-Snmp/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Network-Nortel-Standard-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_nortel_standard_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "network/nortel/standard/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Nortel-Standard-Snmp/rpm.json b/packaging/centreon-plugin-Network-Nortel-Standard-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Nortel-Standard-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Oneaccess-Snmp/deb.json b/packaging/centreon-plugin-Network-Oneaccess-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Oneaccess-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Oneaccess-Snmp/pkg.json b/packaging/centreon-plugin-Network-Oneaccess-Snmp/pkg.json new file mode 100644 index 000000000..152949c8c --- /dev/null +++ b/packaging/centreon-plugin-Network-Oneaccess-Snmp/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Network-Oneaccess-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_oneaccess.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "network/oneaccess/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Oneaccess-Snmp/rpm.json b/packaging/centreon-plugin-Network-Oneaccess-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Oneaccess-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Oracle-Infiniband-Snmp/deb.json b/packaging/centreon-plugin-Network-Oracle-Infiniband-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Oracle-Infiniband-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Oracle-Infiniband-Snmp/pkg.json b/packaging/centreon-plugin-Network-Oracle-Infiniband-Snmp/pkg.json new file mode 100644 index 000000000..9fa3a7507 --- /dev/null +++ b/packaging/centreon-plugin-Network-Oracle-Infiniband-Snmp/pkg.json @@ -0,0 +1,18 @@ +{ + "pkg_name": "centreon-plugin-Network-Oracle-Infiniband-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_oracle_infiniband.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/cpudetailed.pm", + "snmp_standard/mode/loadaverage.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/memory.pm", + "snmp_standard/mode/swap.pm", + "centreon/common/sun/snmp/", + "network/oracle/infiniband/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Oracle-Infiniband-Snmp/rpm.json b/packaging/centreon-plugin-Network-Oracle-Infiniband-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Oracle-Infiniband-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Oracle-Otd-Snmp/deb.json b/packaging/centreon-plugin-Network-Oracle-Otd-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Oracle-Otd-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Oracle-Otd-Snmp/pkg.json b/packaging/centreon-plugin-Network-Oracle-Otd-Snmp/pkg.json new file mode 100644 index 000000000..96fe60580 --- /dev/null +++ b/packaging/centreon-plugin-Network-Oracle-Otd-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Network-Oracle-Otd-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_oracle_otd.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "network/oracle/otd/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Oracle-Otd-Snmp/rpm.json b/packaging/centreon-plugin-Network-Oracle-Otd-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Oracle-Otd-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Patton-Smartnode-Snmp/deb.json b/packaging/centreon-plugin-Network-Patton-Smartnode-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Patton-Smartnode-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Patton-Smartnode-Snmp/pkg.json b/packaging/centreon-plugin-Network-Patton-Smartnode-Snmp/pkg.json new file mode 100644 index 000000000..0743f02eb --- /dev/null +++ b/packaging/centreon-plugin-Network-Patton-Smartnode-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Network-Patton-Smartnode-Snmp", + "pkg_summary": "Centreon Plugin Patton Smartnode SNMP", + "plugin_name": "centreon_patton_smartnode.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "network/patton/smartnode/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Patton-Smartnode-Snmp/rpm.json b/packaging/centreon-plugin-Network-Patton-Smartnode-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Patton-Smartnode-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Peplink-Pepwave-Snmp/deb.json b/packaging/centreon-plugin-Network-Peplink-Pepwave-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Peplink-Pepwave-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Peplink-Pepwave-Snmp/pkg.json b/packaging/centreon-plugin-Network-Peplink-Pepwave-Snmp/pkg.json new file mode 100644 index 000000000..18b824d90 --- /dev/null +++ b/packaging/centreon-plugin-Network-Peplink-Pepwave-Snmp/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Network-Peplink-Pepwave-Snmp", + "pkg_summary": "Centreon Plugin Peplink Pepwave SNMP", + "plugin_name": "centreon_peplink_pepwave_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/resources/", + "network/peplink/pepwave/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Peplink-Pepwave-Snmp/rpm.json b/packaging/centreon-plugin-Network-Peplink-Pepwave-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Peplink-Pepwave-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Perle-Ids-Snmp/deb.json b/packaging/centreon-plugin-Network-Perle-Ids-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Perle-Ids-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Perle-Ids-Snmp/pkg.json b/packaging/centreon-plugin-Network-Perle-Ids-Snmp/pkg.json new file mode 100644 index 000000000..1de0d1d58 --- /dev/null +++ b/packaging/centreon-plugin-Network-Perle-Ids-Snmp/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Network-Perle-Ids-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_perle_ids_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "network/perle/ids/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Perle-Ids-Snmp/rpm.json b/packaging/centreon-plugin-Network-Perle-Ids-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Perle-Ids-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Polycom-Rmx-Snmp/deb.json b/packaging/centreon-plugin-Network-Polycom-Rmx-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Polycom-Rmx-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Polycom-Rmx-Snmp/pkg.json b/packaging/centreon-plugin-Network-Polycom-Rmx-Snmp/pkg.json new file mode 100644 index 000000000..b1745b60a --- /dev/null +++ b/packaging/centreon-plugin-Network-Polycom-Rmx-Snmp/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Network-Polycom-Rmx-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_polycom_rmx_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/cpudetailed.pm", + "snmp_standard/mode/loadaverage.pm", + "snmp_standard/mode/memory.pm", + "network/polycom/rmx/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Polycom-Rmx-Snmp/rpm.json b/packaging/centreon-plugin-Network-Polycom-Rmx-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Polycom-Rmx-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Rad-Airmux-Snmp/deb.json b/packaging/centreon-plugin-Network-Rad-Airmux-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Rad-Airmux-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Rad-Airmux-Snmp/pkg.json b/packaging/centreon-plugin-Network-Rad-Airmux-Snmp/pkg.json new file mode 100644 index 000000000..d81a87a8e --- /dev/null +++ b/packaging/centreon-plugin-Network-Rad-Airmux-Snmp/pkg.json @@ -0,0 +1,14 @@ +{ + "pkg_name": "centreon-plugin-Network-Rad-Airmux-Snmp", + "pkg_summary": "Centreon Plugin Rad Airmux SNMP", + "plugin_name": "centreon_rad_airmux_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/uptime.pm", + "network/rad/airmux/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Rad-Airmux-Snmp/rpm.json b/packaging/centreon-plugin-Network-Rad-Airmux-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Rad-Airmux-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Radware-Alteon-Snmp/deb.json b/packaging/centreon-plugin-Network-Radware-Alteon-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Radware-Alteon-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Radware-Alteon-Snmp/pkg.json b/packaging/centreon-plugin-Network-Radware-Alteon-Snmp/pkg.json new file mode 100644 index 000000000..a3a5a143d --- /dev/null +++ b/packaging/centreon-plugin-Network-Radware-Alteon-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Network-Radware-Alteon-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_radware_alteon_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "network/radware/alteon/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Radware-Alteon-Snmp/rpm.json b/packaging/centreon-plugin-Network-Radware-Alteon-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Radware-Alteon-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Raisecom-Snmp/deb.json b/packaging/centreon-plugin-Network-Raisecom-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Raisecom-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Raisecom-Snmp/pkg.json b/packaging/centreon-plugin-Network-Raisecom-Snmp/pkg.json new file mode 100644 index 000000000..32c17bc0e --- /dev/null +++ b/packaging/centreon-plugin-Network-Raisecom-Snmp/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Network-Raisecom-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_raisecom_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "network/raisecom/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Raisecom-Snmp/rpm.json b/packaging/centreon-plugin-Network-Raisecom-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Raisecom-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Riverbed-Interceptor-Snmp/deb.json b/packaging/centreon-plugin-Network-Riverbed-Interceptor-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Riverbed-Interceptor-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Riverbed-Interceptor-Snmp/pkg.json b/packaging/centreon-plugin-Network-Riverbed-Interceptor-Snmp/pkg.json new file mode 100644 index 000000000..5a381bfa0 --- /dev/null +++ b/packaging/centreon-plugin-Network-Riverbed-Interceptor-Snmp/pkg.json @@ -0,0 +1,22 @@ +{ + "pkg_name": "centreon-plugin-Network-Riverbed-Interceptor-Snmp", + "pkg_summary": "Centreon Plugin to monitor Riverbed SteelHead Interceptor using SNMP", + "plugin_name": "centreon_riverbed_interceptor.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/cpu.pm", + "snmp_standard/mode/cpudetailed.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/liststorages.pm", + "snmp_standard/mode/loadaverage.pm", + "snmp_standard/mode/memory.pm", + "snmp_standard/mode/storage.pm", + "snmp_standard/mode/uptime.pm", + "centreon/common/riverbed/steelhead/snmp/mode/loadaverage.pm", + "centreon/common/riverbed/steelhead/snmp/mode/status.pm", + "network/riverbed/interceptor/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Riverbed-Interceptor-Snmp/rpm.json b/packaging/centreon-plugin-Network-Riverbed-Interceptor-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Riverbed-Interceptor-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Riverbed-Steelhead-Snmp/deb.json b/packaging/centreon-plugin-Network-Riverbed-Steelhead-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Riverbed-Steelhead-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Riverbed-Steelhead-Snmp/pkg.json b/packaging/centreon-plugin-Network-Riverbed-Steelhead-Snmp/pkg.json new file mode 100644 index 000000000..5b5becd08 --- /dev/null +++ b/packaging/centreon-plugin-Network-Riverbed-Steelhead-Snmp/pkg.json @@ -0,0 +1,20 @@ +{ + "pkg_name": "centreon-plugin-Network-Riverbed-Steelhead-Snmp", + "pkg_summary": "Centreon Plugin to monitor Riverbed SteelHead (common and EX series) using SNMP", + "plugin_name": "centreon_riverbed-steelhead.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/cpu.pm", + "snmp_standard/mode/cpudetailed.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/liststorages.pm", + "snmp_standard/mode/memory.pm", + "snmp_standard/mode/storage.pm", + "snmp_standard/mode/uptime.pm", + "centreon/common/riverbed/steelhead/snmp/", + "network/riverbed/steelhead/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Riverbed-Steelhead-Snmp/rpm.json b/packaging/centreon-plugin-Network-Riverbed-Steelhead-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Riverbed-Steelhead-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Routers-Atrica-Snmp/deb.json b/packaging/centreon-plugin-Network-Routers-Atrica-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Routers-Atrica-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Routers-Atrica-Snmp/pkg.json b/packaging/centreon-plugin-Network-Routers-Atrica-Snmp/pkg.json new file mode 100644 index 000000000..260b588da --- /dev/null +++ b/packaging/centreon-plugin-Network-Routers-Atrica-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Network-Routers-Atrica-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_atrica.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "network/atrica/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Routers-Atrica-Snmp/rpm.json b/packaging/centreon-plugin-Network-Routers-Atrica-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Routers-Atrica-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Routers-Juniper-Mseries-Snmp/deb.json b/packaging/centreon-plugin-Network-Routers-Juniper-Mseries-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Routers-Juniper-Mseries-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Routers-Juniper-Mseries-Snmp/pkg.json b/packaging/centreon-plugin-Network-Routers-Juniper-Mseries-Snmp/pkg.json new file mode 100644 index 000000000..edc4568ae --- /dev/null +++ b/packaging/centreon-plugin-Network-Routers-Juniper-Mseries-Snmp/pkg.json @@ -0,0 +1,16 @@ +{ + "pkg_name": "centreon-plugin-Network-Routers-Juniper-Mseries-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_juniper_mseries.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/liststorages.pm", + "snmp_standard/mode/storage.pm", + "network/juniper/common/junos/", + "network/juniper/mseries/" + ] +} diff --git a/packaging/centreon-plugin-Network-Routers-Juniper-Mseries-Snmp/rpm.json b/packaging/centreon-plugin-Network-Routers-Juniper-Mseries-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Routers-Juniper-Mseries-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Routers-Peplink-Balance-Snmp/deb.json b/packaging/centreon-plugin-Network-Routers-Peplink-Balance-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Routers-Peplink-Balance-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Routers-Peplink-Balance-Snmp/pkg.json b/packaging/centreon-plugin-Network-Routers-Peplink-Balance-Snmp/pkg.json new file mode 100644 index 000000000..3ec4d6157 --- /dev/null +++ b/packaging/centreon-plugin-Network-Routers-Peplink-Balance-Snmp/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Network-Routers-Peplink-Balance-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_peplink_balance_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "network/peplink/balance/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Routers-Peplink-Balance-Snmp/rpm.json b/packaging/centreon-plugin-Network-Routers-Peplink-Balance-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Routers-Peplink-Balance-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Routers-Redback-Snmp/deb.json b/packaging/centreon-plugin-Network-Routers-Redback-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Routers-Redback-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Routers-Redback-Snmp/pkg.json b/packaging/centreon-plugin-Network-Routers-Redback-Snmp/pkg.json new file mode 100644 index 000000000..c53f72ab0 --- /dev/null +++ b/packaging/centreon-plugin-Network-Routers-Redback-Snmp/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Network-Routers-Redback-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_redback.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "network/redback/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Routers-Redback-Snmp/rpm.json b/packaging/centreon-plugin-Network-Routers-Redback-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Routers-Redback-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Ruckus-Icx-Snmp/deb.json b/packaging/centreon-plugin-Network-Ruckus-Icx-Snmp/deb.json new file mode 100644 index 000000000..5d24d64c4 --- /dev/null +++ b/packaging/centreon-plugin-Network-Ruckus-Icx-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} diff --git a/packaging/centreon-plugin-Network-Ruckus-Icx-Snmp/pkg.json b/packaging/centreon-plugin-Network-Ruckus-Icx-Snmp/pkg.json new file mode 100644 index 000000000..b12263dec --- /dev/null +++ b/packaging/centreon-plugin-Network-Ruckus-Icx-Snmp/pkg.json @@ -0,0 +1,14 @@ +{ + "pkg_name": "centreon-plugin-Network-Ruckus-Icx-Snmp", + "pkg_summary": "Centreon Plugin to monitor Ruckus ICX series using SNMP", + "plugin_name": "centreon_ruckus_icx_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "centreon/common/foundry/snmp/", + "network/ruckus/icx/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Ruckus-Icx-Snmp/rpm.json b/packaging/centreon-plugin-Network-Ruckus-Icx-Snmp/rpm.json new file mode 100644 index 000000000..d6c100d37 --- /dev/null +++ b/packaging/centreon-plugin-Network-Ruckus-Icx-Snmp/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(Digest::MD5)", + "perl(SNMP)" + ] +} diff --git a/packaging/centreon-plugin-Network-Ruckus-Scg-Snmp/deb.json b/packaging/centreon-plugin-Network-Ruckus-Scg-Snmp/deb.json new file mode 100644 index 000000000..5d24d64c4 --- /dev/null +++ b/packaging/centreon-plugin-Network-Ruckus-Scg-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} diff --git a/packaging/centreon-plugin-Network-Ruckus-Scg-Snmp/pkg.json b/packaging/centreon-plugin-Network-Ruckus-Scg-Snmp/pkg.json new file mode 100644 index 000000000..fbd91ccea --- /dev/null +++ b/packaging/centreon-plugin-Network-Ruckus-Scg-Snmp/pkg.json @@ -0,0 +1,18 @@ +{ + "pkg_name": "centreon-plugin-Network-Ruckus-Scg-Snmp", + "pkg_summary": "Centreon Plugin to monitor Ruckus SmartCell Gateway controllers using SNMP", + "plugin_name": "centreon_ruckus_scg_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/cpu.pm", + "snmp_standard/mode/cpudetailed.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/loadaverage.pm", + "snmp_standard/mode/memory.pm", + "snmp_standard/mode/uptime.pm", + "network/ruckus/scg/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Ruckus-Scg-Snmp/rpm.json b/packaging/centreon-plugin-Network-Ruckus-Scg-Snmp/rpm.json new file mode 100644 index 000000000..d6c100d37 --- /dev/null +++ b/packaging/centreon-plugin-Network-Ruckus-Scg-Snmp/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(Digest::MD5)", + "perl(SNMP)" + ] +} diff --git a/packaging/centreon-plugin-Network-Ruckus-Smartzone-Snmp/deb.json b/packaging/centreon-plugin-Network-Ruckus-Smartzone-Snmp/deb.json new file mode 100644 index 000000000..5d24d64c4 --- /dev/null +++ b/packaging/centreon-plugin-Network-Ruckus-Smartzone-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} diff --git a/packaging/centreon-plugin-Network-Ruckus-Smartzone-Snmp/pkg.json b/packaging/centreon-plugin-Network-Ruckus-Smartzone-Snmp/pkg.json new file mode 100644 index 000000000..3fd1bb07d --- /dev/null +++ b/packaging/centreon-plugin-Network-Ruckus-Smartzone-Snmp/pkg.json @@ -0,0 +1,18 @@ +{ + "pkg_name": "centreon-plugin-Network-Ruckus-Smartzone-Snmp", + "pkg_summary": "Centreon Plugin to monitor Ruckus Smartzone controllers using SNMP", + "plugin_name": "centreon_ruckus_smartzone_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/cpu.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/liststorages.pm", + "snmp_standard/mode/loadaverage.pm", + "snmp_standard/mode/memory.pm", + "snmp_standard/mode/storage.pm", + "network/ruckus/smartzone/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Ruckus-Smartzone-Snmp/rpm.json b/packaging/centreon-plugin-Network-Ruckus-Smartzone-Snmp/rpm.json new file mode 100644 index 000000000..d6c100d37 --- /dev/null +++ b/packaging/centreon-plugin-Network-Ruckus-Smartzone-Snmp/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(Digest::MD5)", + "perl(SNMP)" + ] +} diff --git a/packaging/centreon-plugin-Network-Ruckus-Snmp/deb.json b/packaging/centreon-plugin-Network-Ruckus-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Ruckus-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Ruckus-Snmp/pkg.json b/packaging/centreon-plugin-Network-Ruckus-Snmp/pkg.json new file mode 100644 index 000000000..1a21df851 --- /dev/null +++ b/packaging/centreon-plugin-Network-Ruckus-Snmp/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Network-Ruckus-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_ruckus_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "network/ruckus/ap/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Ruckus-Snmp/rpm.json b/packaging/centreon-plugin-Network-Ruckus-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Ruckus-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Ruckus-Zonedirector-Snmp/deb.json b/packaging/centreon-plugin-Network-Ruckus-Zonedirector-Snmp/deb.json new file mode 100644 index 000000000..5d24d64c4 --- /dev/null +++ b/packaging/centreon-plugin-Network-Ruckus-Zonedirector-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} diff --git a/packaging/centreon-plugin-Network-Ruckus-Zonedirector-Snmp/pkg.json b/packaging/centreon-plugin-Network-Ruckus-Zonedirector-Snmp/pkg.json new file mode 100644 index 000000000..9d4ade2a7 --- /dev/null +++ b/packaging/centreon-plugin-Network-Ruckus-Zonedirector-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Network-Ruckus-Zonedirector-Snmp", + "pkg_summary": "Centreon Plugin to monitor Ruckus Zonedirector controllers using SNMP", + "plugin_name": "centreon_ruckus_zonedirector_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "network/ruckus/zonedirector/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Ruckus-Zonedirector-Snmp/rpm.json b/packaging/centreon-plugin-Network-Ruckus-Zonedirector-Snmp/rpm.json new file mode 100644 index 000000000..d6c100d37 --- /dev/null +++ b/packaging/centreon-plugin-Network-Ruckus-Zonedirector-Snmp/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(Digest::MD5)", + "perl(SNMP)" + ] +} diff --git a/packaging/centreon-plugin-Network-Ruggedcom/deb.json b/packaging/centreon-plugin-Network-Ruggedcom/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Ruggedcom/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Ruggedcom/pkg.json b/packaging/centreon-plugin-Network-Ruggedcom/pkg.json new file mode 100644 index 000000000..f864ed650 --- /dev/null +++ b/packaging/centreon-plugin-Network-Ruggedcom/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Network-Ruggedcom", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_ruggedcom.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "network/ruggedcom/" + ] +} diff --git a/packaging/centreon-plugin-Network-Ruggedcom/rpm.json b/packaging/centreon-plugin-Network-Ruggedcom/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Ruggedcom/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Securactive-Snmp/deb.json b/packaging/centreon-plugin-Network-Securactive-Snmp/deb.json new file mode 100644 index 000000000..738588a2d --- /dev/null +++ b/packaging/centreon-plugin-Network-Securactive-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Securactive-Snmp/pkg.json b/packaging/centreon-plugin-Network-Securactive-Snmp/pkg.json new file mode 100644 index 000000000..69ca8a56a --- /dev/null +++ b/packaging/centreon-plugin-Network-Securactive-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Network-Securactive-Snmp", + "pkg_summary": "Centreon Plugin to monitor Securactive devices using SNMP", + "plugin_name": "centreon_securactive_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "network/securactive/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Securactive-Snmp/rpm.json b/packaging/centreon-plugin-Network-Securactive-Snmp/rpm.json new file mode 100644 index 000000000..6b12c4a52 --- /dev/null +++ b/packaging/centreon-plugin-Network-Securactive-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Silverpeak-Snmp/deb.json b/packaging/centreon-plugin-Network-Silverpeak-Snmp/deb.json new file mode 100644 index 000000000..6b56a4bc9 --- /dev/null +++ b/packaging/centreon-plugin-Network-Silverpeak-Snmp/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libdatetime-perl", + "libsnmp-perl" + ] +} diff --git a/packaging/centreon-plugin-Network-Silverpeak-Snmp/pkg.json b/packaging/centreon-plugin-Network-Silverpeak-Snmp/pkg.json new file mode 100644 index 000000000..5ac0d2783 --- /dev/null +++ b/packaging/centreon-plugin-Network-Silverpeak-Snmp/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Network-Silverpeak-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_silverpeak_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "network/silverpeak/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Silverpeak-Snmp/rpm.json b/packaging/centreon-plugin-Network-Silverpeak-Snmp/rpm.json new file mode 100644 index 000000000..ef522dd17 --- /dev/null +++ b/packaging/centreon-plugin-Network-Silverpeak-Snmp/rpm.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(SNMP)", + "perl(Time::HiRes)" + ] +} diff --git a/packaging/centreon-plugin-Network-Sonus-Sbc-Snmp/deb.json b/packaging/centreon-plugin-Network-Sonus-Sbc-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Sonus-Sbc-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Sonus-Sbc-Snmp/pkg.json b/packaging/centreon-plugin-Network-Sonus-Sbc-Snmp/pkg.json new file mode 100644 index 000000000..4cbbb2932 --- /dev/null +++ b/packaging/centreon-plugin-Network-Sonus-Sbc-Snmp/pkg.json @@ -0,0 +1,19 @@ +{ + "pkg_name": "centreon-plugin-Network-Sonus-SBC-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_sonus_sbc_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/cpu.pm", + "snmp_standard/mode/cpudetailed.pm", + "snmp_standard/mode/memory.pm", + "snmp_standard/mode/swap.pm", + "snmp_standard/mode/loadaverage.pm", + "snmp_standard/mode/storage.pm", + "network/sonus/sbc/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Sonus-Sbc-Snmp/rpm.json b/packaging/centreon-plugin-Network-Sonus-Sbc-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Sonus-Sbc-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Sophos-Es-Snmp/deb.json b/packaging/centreon-plugin-Network-Sophos-Es-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Sophos-Es-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Sophos-Es-Snmp/pkg.json b/packaging/centreon-plugin-Network-Sophos-Es-Snmp/pkg.json new file mode 100644 index 000000000..b0f979e00 --- /dev/null +++ b/packaging/centreon-plugin-Network-Sophos-Es-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Network-Sophos-Es-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_sophos_es_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "network/sophos/es/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Sophos-Es-Snmp/rpm.json b/packaging/centreon-plugin-Network-Sophos-Es-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Sophos-Es-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Stormshield-Api/deb.json b/packaging/centreon-plugin-Network-Stormshield-Api/deb.json new file mode 100644 index 000000000..32d6f1f4b --- /dev/null +++ b/packaging/centreon-plugin-Network-Stormshield-Api/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libxml-libxml-simple-perl" + ] +} diff --git a/packaging/centreon-plugin-Network-Stormshield-Api/pkg.json b/packaging/centreon-plugin-Network-Stormshield-Api/pkg.json new file mode 100644 index 000000000..acf2a230d --- /dev/null +++ b/packaging/centreon-plugin-Network-Stormshield-Api/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Network-Stormshield-Api", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_stormshield_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "network/stormshield/api/" + ] +} diff --git a/packaging/centreon-plugin-Network-Stormshield-Api/rpm.json b/packaging/centreon-plugin-Network-Stormshield-Api/rpm.json new file mode 100644 index 000000000..0ccd15b94 --- /dev/null +++ b/packaging/centreon-plugin-Network-Stormshield-Api/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(XML::LibXML::Simple)" + ] +} diff --git a/packaging/centreon-plugin-Network-Stormshield-Snmp/deb.json b/packaging/centreon-plugin-Network-Stormshield-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Stormshield-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Stormshield-Snmp/pkg.json b/packaging/centreon-plugin-Network-Stormshield-Snmp/pkg.json new file mode 100644 index 000000000..8d1030265 --- /dev/null +++ b/packaging/centreon-plugin-Network-Stormshield-Snmp/pkg.json @@ -0,0 +1,20 @@ +{ + "pkg_name": "centreon-plugin-Network-Stormshield-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_stormshield_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "os/freebsd/snmp/mode/memory.pm", + "snmp_standard/mode/cpu.pm", + "snmp_standard/mode/cpudetailed.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/loadaverage.pm", + "snmp_standard/mode/memory.pm", + "snmp_standard/mode/storage.pm", + "snmp_standard/mode/swap.pm", + "network/stormshield/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Stormshield-Snmp/rpm.json b/packaging/centreon-plugin-Network-Stormshield-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Stormshield-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Stormshield-Ssh/deb.json b/packaging/centreon-plugin-Network-Stormshield-Ssh/deb.json new file mode 100644 index 000000000..0d141ee0d --- /dev/null +++ b/packaging/centreon-plugin-Network-Stormshield-Ssh/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libssh-session-perl", + "plink" + ] +} diff --git a/packaging/centreon-plugin-Network-Stormshield-Ssh/pkg.json b/packaging/centreon-plugin-Network-Stormshield-Ssh/pkg.json new file mode 100644 index 000000000..cef31bfcd --- /dev/null +++ b/packaging/centreon-plugin-Network-Stormshield-Ssh/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Network-Stormshield-Ssh", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_stormshield_ssh.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/plugins/backend/ssh/", + "centreon/plugins/ssh.pm", + "network/stormshield/local/" + ] +} diff --git a/packaging/centreon-plugin-Network-Stormshield-Ssh/rpm.json b/packaging/centreon-plugin-Network-Stormshield-Ssh/rpm.json new file mode 100644 index 000000000..fb54a67a9 --- /dev/null +++ b/packaging/centreon-plugin-Network-Stormshield-Ssh/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(Libssh::Session)", + "plink" + ] +} diff --git a/packaging/centreon-plugin-Network-Switchs-Alcatel-Omniswitch-Snmp/deb.json b/packaging/centreon-plugin-Network-Switchs-Alcatel-Omniswitch-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Switchs-Alcatel-Omniswitch-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Switchs-Alcatel-Omniswitch-Snmp/pkg.json b/packaging/centreon-plugin-Network-Switchs-Alcatel-Omniswitch-Snmp/pkg.json new file mode 100644 index 000000000..33eeb7e6e --- /dev/null +++ b/packaging/centreon-plugin-Network-Switchs-Alcatel-Omniswitch-Snmp/pkg.json @@ -0,0 +1,15 @@ +{ + "pkg_name": "centreon-plugin-Network-Switchs-Alcatel-Omniswitch-Snmp", + "pkg_summary": "Centreon Plugin to monitor Alcatel OmniSwitch using SNMP", + "plugin_name": "centreon_alcatel_omniswitch_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/listspanningtrees.pm", + "snmp_standard/mode/spanningtree.pm", + "network/alcatel/omniswitch/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Switchs-Alcatel-Omniswitch-Snmp/rpm.json b/packaging/centreon-plugin-Network-Switchs-Alcatel-Omniswitch-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Switchs-Alcatel-Omniswitch-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Switchs-Arista-Snmp/deb.json b/packaging/centreon-plugin-Network-Switchs-Arista-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Switchs-Arista-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Switchs-Arista-Snmp/pkg.json b/packaging/centreon-plugin-Network-Switchs-Arista-Snmp/pkg.json new file mode 100644 index 000000000..0d363d330 --- /dev/null +++ b/packaging/centreon-plugin-Network-Switchs-Arista-Snmp/pkg.json @@ -0,0 +1,18 @@ +{ + "pkg_name": "centreon-plugin-Network-Switchs-Arista-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_arista.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/cpu.pm", + "snmp_standard/mode/entity.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/storage.pm", + "snmp_standard/mode/tcpcon.pm", + "snmp_standard/mode/uptime.pm", + "network/arista/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Switchs-Arista-Snmp/rpm.json b/packaging/centreon-plugin-Network-Switchs-Arista-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Switchs-Arista-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Switchs-Aruba-Standard-Snmp/deb.json b/packaging/centreon-plugin-Network-Switchs-Aruba-Standard-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Switchs-Aruba-Standard-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Switchs-Aruba-Standard-Snmp/pkg.json b/packaging/centreon-plugin-Network-Switchs-Aruba-Standard-Snmp/pkg.json new file mode 100644 index 000000000..6b154e4ce --- /dev/null +++ b/packaging/centreon-plugin-Network-Switchs-Aruba-Standard-Snmp/pkg.json @@ -0,0 +1,14 @@ +{ + "pkg_name": "centreon-plugin-Network-Switchs-Aruba-Standard-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_aruba.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "centreon/common/aruba/snmp/", + "network/aruba/standard/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Switchs-Aruba-Standard-Snmp/rpm.json b/packaging/centreon-plugin-Network-Switchs-Aruba-Standard-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Switchs-Aruba-Standard-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Switchs-Brocade-Snmp/deb.json b/packaging/centreon-plugin-Network-Switchs-Brocade-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Switchs-Brocade-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Switchs-Brocade-Snmp/pkg.json b/packaging/centreon-plugin-Network-Switchs-Brocade-Snmp/pkg.json new file mode 100644 index 000000000..b8c1596ab --- /dev/null +++ b/packaging/centreon-plugin-Network-Switchs-Brocade-Snmp/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Network-Switchs-Brocade-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_brocade.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "network/brocade/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Switchs-Brocade-Snmp/rpm.json b/packaging/centreon-plugin-Network-Switchs-Brocade-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Switchs-Brocade-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Switchs-Cisco-Smallbusiness-Standard-Snmp/deb.json b/packaging/centreon-plugin-Network-Switchs-Cisco-Smallbusiness-Standard-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Switchs-Cisco-Smallbusiness-Standard-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Switchs-Cisco-Smallbusiness-Standard-Snmp/pkg.json b/packaging/centreon-plugin-Network-Switchs-Cisco-Smallbusiness-Standard-Snmp/pkg.json new file mode 100644 index 000000000..430bac322 --- /dev/null +++ b/packaging/centreon-plugin-Network-Switchs-Cisco-Smallbusiness-Standard-Snmp/pkg.json @@ -0,0 +1,16 @@ +{ + "pkg_name": "centreon-plugin-Network-Switchs-Cisco-Smallbusiness-Standard-Snmp", + "pkg_summary": "Centreon Plugin to monitor Cisco Small Business switches using SNMP", + "plugin_name": "centreon_cisco_smallbusiness.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/listspanningtrees.pm", + "snmp_standard/mode/spanningtree.pm", + "centreon/common/cisco/smallbusiness/snmp/", + "network/cisco/smallbusiness/standard/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Switchs-Cisco-Smallbusiness-Standard-Snmp/rpm.json b/packaging/centreon-plugin-Network-Switchs-Cisco-Smallbusiness-Standard-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Switchs-Cisco-Smallbusiness-Standard-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Switchs-Dell-Os10-Snmp/deb.json b/packaging/centreon-plugin-Network-Switchs-Dell-Os10-Snmp/deb.json new file mode 100644 index 000000000..5d24d64c4 --- /dev/null +++ b/packaging/centreon-plugin-Network-Switchs-Dell-Os10-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} diff --git a/packaging/centreon-plugin-Network-Switchs-Dell-Os10-Snmp/pkg.json b/packaging/centreon-plugin-Network-Switchs-Dell-Os10-Snmp/pkg.json new file mode 100644 index 000000000..e5fce06ef --- /dev/null +++ b/packaging/centreon-plugin-Network-Switchs-Dell-Os10-Snmp/pkg.json @@ -0,0 +1,20 @@ +{ + "pkg_name": "centreon-plugin-Network-Dell-Os10-Snmp", + "pkg_summary": "Centreon Plugin to monitor Dell OS 10 switches using SNMP", + "plugin_name": "centreon_dell_os10_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/cpu.pm", + "snmp_standard/mode/diskusage.pm", + "snmp_standard/mode/inodes.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/loadaverage.pm", + "snmp_standard/mode/memory.pm", + "snmp_standard/mode/swap.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/uptime.pm", + "network/dell/os10/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Switchs-Dell-Os10-Snmp/rpm.json b/packaging/centreon-plugin-Network-Switchs-Dell-Os10-Snmp/rpm.json new file mode 100644 index 000000000..14e966306 --- /dev/null +++ b/packaging/centreon-plugin-Network-Switchs-Dell-Os10-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} diff --git a/packaging/centreon-plugin-Network-Switchs-Dell-Xseries-Snmp/deb.json b/packaging/centreon-plugin-Network-Switchs-Dell-Xseries-Snmp/deb.json new file mode 100644 index 000000000..5d24d64c4 --- /dev/null +++ b/packaging/centreon-plugin-Network-Switchs-Dell-Xseries-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} diff --git a/packaging/centreon-plugin-Network-Switchs-Dell-Xseries-Snmp/pkg.json b/packaging/centreon-plugin-Network-Switchs-Dell-Xseries-Snmp/pkg.json new file mode 100644 index 000000000..b1d312230 --- /dev/null +++ b/packaging/centreon-plugin-Network-Switchs-Dell-Xseries-Snmp/pkg.json @@ -0,0 +1,15 @@ +{ + "pkg_name": "centreon-plugin-Network-Dell-Xseries-Snmp", + "pkg_summary": "Centreon Plugin to monitor Dell Xseries switches using SNMP", + "plugin_name": "centreon_dell_xseries_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "centreon/common/radlan/", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/uptime.pm", + "network/dell/xseries/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Switchs-Dell-Xseries-Snmp/rpm.json b/packaging/centreon-plugin-Network-Switchs-Dell-Xseries-Snmp/rpm.json new file mode 100644 index 000000000..14e966306 --- /dev/null +++ b/packaging/centreon-plugin-Network-Switchs-Dell-Xseries-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} diff --git a/packaging/centreon-plugin-Network-Switchs-Hirschmann/deb.json b/packaging/centreon-plugin-Network-Switchs-Hirschmann/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Switchs-Hirschmann/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Switchs-Hirschmann/pkg.json b/packaging/centreon-plugin-Network-Switchs-Hirschmann/pkg.json new file mode 100644 index 000000000..85a3df5eb --- /dev/null +++ b/packaging/centreon-plugin-Network-Switchs-Hirschmann/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Network-Switchs-Hirschmann", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_hirschmann.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "network/hirschmann/standard/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Switchs-Hirschmann/rpm.json b/packaging/centreon-plugin-Network-Switchs-Hirschmann/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Switchs-Hirschmann/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Switchs-Hp-Procurve-Snmp/deb.json b/packaging/centreon-plugin-Network-Switchs-Hp-Procurve-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Switchs-Hp-Procurve-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Switchs-Hp-Procurve-Snmp/pkg.json b/packaging/centreon-plugin-Network-Switchs-Hp-Procurve-Snmp/pkg.json new file mode 100644 index 000000000..ed2948686 --- /dev/null +++ b/packaging/centreon-plugin-Network-Switchs-Hp-Procurve-Snmp/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Network-Switchs-Hp-Procurve-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_hp_procurve.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "network/hp/procurve/" + ] +} diff --git a/packaging/centreon-plugin-Network-Switchs-Hp-Procurve-Snmp/rpm.json b/packaging/centreon-plugin-Network-Switchs-Hp-Procurve-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Switchs-Hp-Procurve-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Switchs-Juniper-Ex-Snmp/deb.json b/packaging/centreon-plugin-Network-Switchs-Juniper-Ex-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Switchs-Juniper-Ex-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Switchs-Juniper-Ex-Snmp/pkg.json b/packaging/centreon-plugin-Network-Switchs-Juniper-Ex-Snmp/pkg.json new file mode 100644 index 000000000..30b48e511 --- /dev/null +++ b/packaging/centreon-plugin-Network-Switchs-Juniper-Ex-Snmp/pkg.json @@ -0,0 +1,16 @@ +{ + "pkg_name": "centreon-plugin-Network-Switchs-Juniper-Ex-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_juniper_ex_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/liststorages.pm", + "snmp_standard/mode/storage.pm", + "network/juniper/common/junos/", + "network/juniper/ex/" + ] +} diff --git a/packaging/centreon-plugin-Network-Switchs-Juniper-Ex-Snmp/rpm.json b/packaging/centreon-plugin-Network-Switchs-Juniper-Ex-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Switchs-Juniper-Ex-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Switchs-Moxa-Snmp/deb.json b/packaging/centreon-plugin-Network-Switchs-Moxa-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Switchs-Moxa-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Switchs-Moxa-Snmp/pkg.json b/packaging/centreon-plugin-Network-Switchs-Moxa-Snmp/pkg.json new file mode 100644 index 000000000..2d63c0ee6 --- /dev/null +++ b/packaging/centreon-plugin-Network-Switchs-Moxa-Snmp/pkg.json @@ -0,0 +1,14 @@ +{ + "pkg_name": "centreon-plugin-Network-Switchs-Moxa-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_moxa_switch_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/uptime.pm", + "network/moxa/switch/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Switchs-Moxa-Snmp/rpm.json b/packaging/centreon-plugin-Network-Switchs-Moxa-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Switchs-Moxa-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Switchs-Mrv-Optiswitch-Snmp/deb.json b/packaging/centreon-plugin-Network-Switchs-Mrv-Optiswitch-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Switchs-Mrv-Optiswitch-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Switchs-Mrv-Optiswitch-Snmp/pkg.json b/packaging/centreon-plugin-Network-Switchs-Mrv-Optiswitch-Snmp/pkg.json new file mode 100644 index 000000000..d685e20a2 --- /dev/null +++ b/packaging/centreon-plugin-Network-Switchs-Mrv-Optiswitch-Snmp/pkg.json @@ -0,0 +1,14 @@ +{ + "pkg_name": "centreon-plugin-Network-Switchs-Mrv-Optiswitch-Snmp", + "pkg_summary": "Centreon Plugin to monitor MRV Optiswitch switches", + "plugin_name": "centreon_mrv_optiswitch_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/uptime.pm", + "network/mrv/optiswitch/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Switchs-Mrv-Optiswitch-Snmp/rpm.json b/packaging/centreon-plugin-Network-Switchs-Mrv-Optiswitch-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Switchs-Mrv-Optiswitch-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Symbol-Wing-Snmp/deb.json b/packaging/centreon-plugin-Network-Symbol-Wing-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Symbol-Wing-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Symbol-Wing-Snmp/pkg.json b/packaging/centreon-plugin-Network-Symbol-Wing-Snmp/pkg.json new file mode 100644 index 000000000..ad6f8ca54 --- /dev/null +++ b/packaging/centreon-plugin-Network-Symbol-Wing-Snmp/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Network-Symbol-Wing-Snmp", + "pkg_summary": "Centreon Plugin to monitor SYMBOL WiNG switches using SNMP", + "plugin_name": "centreon_symbol_wing_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/listinterfaces.pm", + "network/symbol/wing/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Symbol-Wing-Snmp/rpm.json b/packaging/centreon-plugin-Network-Symbol-Wing-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Symbol-Wing-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Teltonika-Snmp/deb.json b/packaging/centreon-plugin-Network-Teltonika-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Teltonika-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Teltonika-Snmp/pkg.json b/packaging/centreon-plugin-Network-Teltonika-Snmp/pkg.json new file mode 100644 index 000000000..6191cee2e --- /dev/null +++ b/packaging/centreon-plugin-Network-Teltonika-Snmp/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Network-Teltonika-Snmp", + "pkg_summary": "Centreon Plugin Teltonika SNMP", + "plugin_name": "centreon_teltonika_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "network/teltonika/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Teltonika-Snmp/rpm.json b/packaging/centreon-plugin-Network-Teltonika-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Teltonika-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Tplink-Snmp/deb.json b/packaging/centreon-plugin-Network-Tplink-Snmp/deb.json new file mode 100644 index 000000000..5d24d64c4 --- /dev/null +++ b/packaging/centreon-plugin-Network-Tplink-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} diff --git a/packaging/centreon-plugin-Network-Tplink-Snmp/pkg.json b/packaging/centreon-plugin-Network-Tplink-Snmp/pkg.json new file mode 100644 index 000000000..c3d209236 --- /dev/null +++ b/packaging/centreon-plugin-Network-Tplink-Snmp/pkg.json @@ -0,0 +1,14 @@ +{ + "pkg_name": "centreon-plugin-Network-Tplink-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_tplink_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/uptime.pm", + "snmp_standard/mode/resources/", + "network/tplink/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Tplink-Snmp/rpm.json b/packaging/centreon-plugin-Network-Tplink-Snmp/rpm.json new file mode 100644 index 000000000..14e966306 --- /dev/null +++ b/packaging/centreon-plugin-Network-Tplink-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} diff --git a/packaging/centreon-plugin-Network-Ubiquiti-Airfiber-Snmp/deb.json b/packaging/centreon-plugin-Network-Ubiquiti-Airfiber-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Ubiquiti-Airfiber-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Ubiquiti-Airfiber-Snmp/pkg.json b/packaging/centreon-plugin-Network-Ubiquiti-Airfiber-Snmp/pkg.json new file mode 100644 index 000000000..6f505ce00 --- /dev/null +++ b/packaging/centreon-plugin-Network-Ubiquiti-Airfiber-Snmp/pkg.json @@ -0,0 +1,14 @@ +{ + "pkg_name": "centreon-plugin-Network-Ubiquiti-Airfiber-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_ubiquiti_airfiber_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "centreon/common/frogfoot/snmp/", + "network/ubiquiti/airfiber/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Ubiquiti-Airfiber-Snmp/rpm.json b/packaging/centreon-plugin-Network-Ubiquiti-Airfiber-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Ubiquiti-Airfiber-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Ubiquiti-Edge-Snmp/deb.json b/packaging/centreon-plugin-Network-Ubiquiti-Edge-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Ubiquiti-Edge-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Ubiquiti-Edge-Snmp/pkg.json b/packaging/centreon-plugin-Network-Ubiquiti-Edge-Snmp/pkg.json new file mode 100644 index 000000000..160651331 --- /dev/null +++ b/packaging/centreon-plugin-Network-Ubiquiti-Edge-Snmp/pkg.json @@ -0,0 +1,14 @@ +{ + "pkg_name": "centreon-plugin-Network-Ubiquiti-Edge-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_ubiquiti_edge_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "centreon/common/broadcom/fastpath", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "network/ubiquiti/edge/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Ubiquiti-Edge-Snmp/rpm.json b/packaging/centreon-plugin-Network-Ubiquiti-Edge-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Ubiquiti-Edge-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Ubiquiti-Unifi-Snmp/deb.json b/packaging/centreon-plugin-Network-Ubiquiti-Unifi-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Ubiquiti-Unifi-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Ubiquiti-Unifi-Snmp/pkg.json b/packaging/centreon-plugin-Network-Ubiquiti-Unifi-Snmp/pkg.json new file mode 100644 index 000000000..4a5763fc2 --- /dev/null +++ b/packaging/centreon-plugin-Network-Ubiquiti-Unifi-Snmp/pkg.json @@ -0,0 +1,19 @@ +{ + "pkg_name": "centreon-plugin-Network-Ubiquiti-Unifi-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_ubiquiti_unifi_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/cpudetailed.pm", + "snmp_standard/mode/diskusage.pm", + "snmp_standard/mode/loadaverage.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/memory.pm", + "snmp_standard/mode/swap.pm", + "snmp_standard/mode/uptime.pm", + "network/ubiquiti/unifi/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Ubiquiti-Unifi-Snmp/rpm.json b/packaging/centreon-plugin-Network-Ubiquiti-Unifi-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Ubiquiti-Unifi-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Ucopia-Snmp/deb.json b/packaging/centreon-plugin-Network-Ucopia-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Ucopia-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Ucopia-Snmp/pkg.json b/packaging/centreon-plugin-Network-Ucopia-Snmp/pkg.json new file mode 100644 index 000000000..0f89723aa --- /dev/null +++ b/packaging/centreon-plugin-Network-Ucopia-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Network-Ucopia-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_ucopia_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "network/ucopia/wlc/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Ucopia-Snmp/rpm.json b/packaging/centreon-plugin-Network-Ucopia-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Ucopia-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Vectra-Restapi/deb.json b/packaging/centreon-plugin-Network-Vectra-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Network-Vectra-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Network-Vectra-Restapi/pkg.json b/packaging/centreon-plugin-Network-Vectra-Restapi/pkg.json new file mode 100644 index 000000000..3142144a4 --- /dev/null +++ b/packaging/centreon-plugin-Network-Vectra-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Network-Vectra-Restapi", + "pkg_summary": "Centreon Plugin to monitor Vectra using Rest API", + "plugin_name": "centreon_vectra_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "network/vectra/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Network-Vectra-Restapi/rpm.json b/packaging/centreon-plugin-Network-Vectra-Restapi/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Network-Vectra-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Network-Versa-Director-Restapi/deb.json b/packaging/centreon-plugin-Network-Versa-Director-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Network-Versa-Director-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Network-Versa-Director-Restapi/pkg.json b/packaging/centreon-plugin-Network-Versa-Director-Restapi/pkg.json new file mode 100644 index 000000000..4c05892f5 --- /dev/null +++ b/packaging/centreon-plugin-Network-Versa-Director-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Network-Versa-Director-Restapi", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_versa_director_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "network/versa/director/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Network-Versa-Director-Restapi/rpm.json b/packaging/centreon-plugin-Network-Versa-Director-Restapi/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Network-Versa-Director-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Network-Versa-Snmp/deb.json b/packaging/centreon-plugin-Network-Versa-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Versa-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Versa-Snmp/pkg.json b/packaging/centreon-plugin-Network-Versa-Snmp/pkg.json new file mode 100644 index 000000000..869565ca6 --- /dev/null +++ b/packaging/centreon-plugin-Network-Versa-Snmp/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Network-Versa-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_versa_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "network/versa/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Versa-Snmp/rpm.json b/packaging/centreon-plugin-Network-Versa-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Versa-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Viptela-Snmp/deb.json b/packaging/centreon-plugin-Network-Viptela-Snmp/deb.json new file mode 100644 index 000000000..5d24d64c4 --- /dev/null +++ b/packaging/centreon-plugin-Network-Viptela-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} diff --git a/packaging/centreon-plugin-Network-Viptela-Snmp/pkg.json b/packaging/centreon-plugin-Network-Viptela-Snmp/pkg.json new file mode 100644 index 000000000..5ea610630 --- /dev/null +++ b/packaging/centreon-plugin-Network-Viptela-Snmp/pkg.json @@ -0,0 +1,14 @@ +{ + "pkg_name": "centreon-plugin-Network-Viptela-Snmp", + "pkg_summary": "Centreon Plugin Viptela SNMP", + "plugin_name": "centreon_viptela_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/uptime.pm", + "network/viptela/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Viptela-Snmp/rpm.json b/packaging/centreon-plugin-Network-Viptela-Snmp/rpm.json new file mode 100644 index 000000000..14e966306 --- /dev/null +++ b/packaging/centreon-plugin-Network-Viptela-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} diff --git a/packaging/centreon-plugin-Network-Watchguard-Snmp/deb.json b/packaging/centreon-plugin-Network-Watchguard-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Watchguard-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Watchguard-Snmp/pkg.json b/packaging/centreon-plugin-Network-Watchguard-Snmp/pkg.json new file mode 100644 index 000000000..e26aa77a0 --- /dev/null +++ b/packaging/centreon-plugin-Network-Watchguard-Snmp/pkg.json @@ -0,0 +1,16 @@ +{ + "pkg_name": "centreon-plugin-Network-Watchguard-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_watchguard_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/hardwaredevice.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/liststorages.pm", + "snmp_standard/mode/storage.pm", + "network/watchguard/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Watchguard-Snmp/rpm.json b/packaging/centreon-plugin-Network-Watchguard-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Watchguard-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Zyxel-Snmp/deb.json b/packaging/centreon-plugin-Network-Zyxel-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Network-Zyxel-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Network-Zyxel-Snmp/pkg.json b/packaging/centreon-plugin-Network-Zyxel-Snmp/pkg.json new file mode 100644 index 000000000..f80a4da99 --- /dev/null +++ b/packaging/centreon-plugin-Network-Zyxel-Snmp/pkg.json @@ -0,0 +1,13 @@ +{ + "pkg_name": "centreon-plugin-Network-Zyxel-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_zyxel_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "network/zyxel/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Network-Zyxel-Snmp/rpm.json b/packaging/centreon-plugin-Network-Zyxel-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Network-Zyxel-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Notification-Centreon-Opentickets-Api/deb.json b/packaging/centreon-plugin-Notification-Centreon-Opentickets-Api/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Notification-Centreon-Opentickets-Api/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Notification-Centreon-Opentickets-Api/pkg.json b/packaging/centreon-plugin-Notification-Centreon-Opentickets-Api/pkg.json new file mode 100644 index 000000000..a3cb18ca4 --- /dev/null +++ b/packaging/centreon-plugin-Notification-Centreon-Opentickets-Api/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Notification-Centreon-Opentickets-Api", + "pkg_summary": "Centreon Plugin to send notifications to Centreon Open Tickets", + "plugin_name": "centreon_notification_centreon_opentickets_api.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "notification/centreon/opentickets/api/" + ] +} diff --git a/packaging/centreon-plugin-Notification-Centreon-Opentickets-Api/rpm.json b/packaging/centreon-plugin-Notification-Centreon-Opentickets-Api/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Notification-Centreon-Opentickets-Api/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Notification-Highsms/deb.json b/packaging/centreon-plugin-Notification-Highsms/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Notification-Highsms/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Notification-Highsms/pkg.json b/packaging/centreon-plugin-Notification-Highsms/pkg.json new file mode 100644 index 000000000..9b1fa76a3 --- /dev/null +++ b/packaging/centreon-plugin-Notification-Highsms/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Notification-Highsms", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_notification_highsms.pl", + "files": [ + "centreon/plugins/script_simple.pm", + "notification/highsms/" + ] +} diff --git a/packaging/centreon-plugin-Notification-Highsms/rpm.json b/packaging/centreon-plugin-Notification-Highsms/rpm.json new file mode 100644 index 000000000..e40e8ebeb --- /dev/null +++ b/packaging/centreon-plugin-Notification-Highsms/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(Time::HiRes)" + ] +} diff --git a/packaging/centreon-plugin-Notification-Prowl/deb.json b/packaging/centreon-plugin-Notification-Prowl/deb.json new file mode 100644 index 000000000..b22cf39a2 --- /dev/null +++ b/packaging/centreon-plugin-Notification-Prowl/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libxml-simple-perl" + ] +} diff --git a/packaging/centreon-plugin-Notification-Prowl/pkg.json b/packaging/centreon-plugin-Notification-Prowl/pkg.json new file mode 100644 index 000000000..e80a43d3c --- /dev/null +++ b/packaging/centreon-plugin-Notification-Prowl/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Notification-Prowl", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_notification_prowl.pl", + "files": [ + "centreon/plugins/script_simple.pm", + "notification/prowl/" + ] +} diff --git a/packaging/centreon-plugin-Notification-Prowl/rpm.json b/packaging/centreon-plugin-Notification-Prowl/rpm.json new file mode 100644 index 000000000..049fa4c5d --- /dev/null +++ b/packaging/centreon-plugin-Notification-Prowl/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(XML::Simple)" + ] +} diff --git a/packaging/centreon-plugin-Notification-Sirportly/deb.json b/packaging/centreon-plugin-Notification-Sirportly/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Notification-Sirportly/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Notification-Sirportly/pkg.json b/packaging/centreon-plugin-Notification-Sirportly/pkg.json new file mode 100644 index 000000000..ab2ec756f --- /dev/null +++ b/packaging/centreon-plugin-Notification-Sirportly/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Notification-Sirportly", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_notification_sirportly.pl", + "files": [ + "centreon/plugins/script_simple.pm", + "notification/sirportly/" + ] +} diff --git a/packaging/centreon-plugin-Notification-Sirportly/rpm.json b/packaging/centreon-plugin-Notification-Sirportly/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Notification-Sirportly/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Notification-Teams/deb.json b/packaging/centreon-plugin-Notification-Teams/deb.json new file mode 100644 index 000000000..8133a85e5 --- /dev/null +++ b/packaging/centreon-plugin-Notification-Teams/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libdatetime-perl" + ] +} diff --git a/packaging/centreon-plugin-Notification-Teams/pkg.json b/packaging/centreon-plugin-Notification-Teams/pkg.json new file mode 100644 index 000000000..ab5ed1987 --- /dev/null +++ b/packaging/centreon-plugin-Notification-Teams/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Notification-Teams", + "pkg_summary": "Centreon Plugin to send notifications to Microsoft Teams", + "plugin_name": "centreon_notification_teams.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "cloud/microsoft/office365/custom/graphapi.pm", + "notification/microsoft/office365/teams/" + ] +} diff --git a/packaging/centreon-plugin-Notification-Teams/rpm.json b/packaging/centreon-plugin-Notification-Teams/rpm.json new file mode 100644 index 000000000..4db4877ce --- /dev/null +++ b/packaging/centreon-plugin-Notification-Teams/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(DateTime)", + "perl(Digest::SHA)" + ] +} diff --git a/packaging/centreon-plugin-Operatingsystems-AS400-Connector/deb.json b/packaging/centreon-plugin-Operatingsystems-AS400-Connector/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Operatingsystems-AS400-Connector/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Operatingsystems-AS400-Connector/pkg.json b/packaging/centreon-plugin-Operatingsystems-AS400-Connector/pkg.json new file mode 100644 index 000000000..9b1be0e99 --- /dev/null +++ b/packaging/centreon-plugin-Operatingsystems-AS400-Connector/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Operatingsystems-AS400-Connector", + "pkg_summary": "Centreon Plugin to monitor AS400", + "plugin_name": "centreon_as400_connector_client.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "os/as400/connector/" + ] +} + diff --git a/packaging/centreon-plugin-Operatingsystems-AS400-Connector/rpm.json b/packaging/centreon-plugin-Operatingsystems-AS400-Connector/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Operatingsystems-AS400-Connector/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Operatingsystems-Aix-Local/deb.json b/packaging/centreon-plugin-Operatingsystems-Aix-Local/deb.json new file mode 100644 index 000000000..7b601b3a7 --- /dev/null +++ b/packaging/centreon-plugin-Operatingsystems-Aix-Local/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "plink", + "libssh-session-perl" + ] +} diff --git a/packaging/centreon-plugin-Operatingsystems-Aix-Local/pkg.json b/packaging/centreon-plugin-Operatingsystems-Aix-Local/pkg.json new file mode 100644 index 000000000..81c270b84 --- /dev/null +++ b/packaging/centreon-plugin-Operatingsystems-Aix-Local/pkg.json @@ -0,0 +1,11 @@ +{ + "pkg_name": "centreon-plugin-Operatingsystems-Aix-Local", + "pkg_summary": "Centreon Plugin to monitor AIX localy", + "plugin_name": "centreon_aix_local.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/plugins/backend/ssh/", + "centreon/plugins/ssh.pm", + "os/aix/local/" + ] +} diff --git a/packaging/centreon-plugin-Operatingsystems-Aix-Local/rpm.json b/packaging/centreon-plugin-Operatingsystems-Aix-Local/rpm.json new file mode 100644 index 000000000..805085f38 --- /dev/null +++ b/packaging/centreon-plugin-Operatingsystems-Aix-Local/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "plink", + "perl(Libssh::Session)" + ] +} diff --git a/packaging/centreon-plugin-Operatingsystems-Aix-Snmp/deb.json b/packaging/centreon-plugin-Operatingsystems-Aix-Snmp/deb.json new file mode 100644 index 000000000..bcb1a852d --- /dev/null +++ b/packaging/centreon-plugin-Operatingsystems-Aix-Snmp/deb.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "libsnmp-perl", + "libdatetime-perl", + "libnet-ntp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Operatingsystems-Aix-Snmp/pkg.json b/packaging/centreon-plugin-Operatingsystems-Aix-Snmp/pkg.json new file mode 100644 index 000000000..1daf60833 --- /dev/null +++ b/packaging/centreon-plugin-Operatingsystems-Aix-Snmp/pkg.json @@ -0,0 +1,19 @@ +{ + "pkg_name": "centreon-plugin-Operatingsystems-Aix-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_aix_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/cpu.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/listprocesses.pm", + "snmp_standard/mode/liststorages.pm", + "snmp_standard/mode/processcount.pm", + "snmp_standard/mode/storage.pm", + "snmp_standard/mode/ntp.pm", + "snmp_standard/mode/resources", + "os/aix/snmp" + ] +} diff --git a/packaging/centreon-plugin-Operatingsystems-Aix-Snmp/rpm.json b/packaging/centreon-plugin-Operatingsystems-Aix-Snmp/rpm.json new file mode 100644 index 000000000..f91a6ab68 --- /dev/null +++ b/packaging/centreon-plugin-Operatingsystems-Aix-Snmp/rpm.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "perl(SNMP)", + "perl(DateTime)", + "perl(Net::NTP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Operatingsystems-Freebsd-Snmp/deb.json b/packaging/centreon-plugin-Operatingsystems-Freebsd-Snmp/deb.json new file mode 100644 index 000000000..d94e32d22 --- /dev/null +++ b/packaging/centreon-plugin-Operatingsystems-Freebsd-Snmp/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libsnmp-perl", + "libdatetime-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Operatingsystems-Freebsd-Snmp/pkg.json b/packaging/centreon-plugin-Operatingsystems-Freebsd-Snmp/pkg.json new file mode 100644 index 000000000..6f4972c8d --- /dev/null +++ b/packaging/centreon-plugin-Operatingsystems-Freebsd-Snmp/pkg.json @@ -0,0 +1,27 @@ +{ + "pkg_name": "centreon-plugin-Operatingsystems-Freebsd-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_freebsd_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/cpu.pm", + "snmp_standard/mode/cpudetailed.pm", + "snmp_standard/mode/diskio.pm", + "snmp_standard/mode/diskusage.pm", + "snmp_standard/mode/inodes.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/loadaverage.pm", + "snmp_standard/mode/listdiskspath.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/listprocesses.pm", + "snmp_standard/mode/liststorages.pm", + "snmp_standard/mode/processcount.pm", + "snmp_standard/mode/storage.pm", + "snmp_standard/mode/swap.pm", + "snmp_standard/mode/tcpcon.pm", + "snmp_standard/mode/uptime.pm", + "os/freebsd/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Operatingsystems-Freebsd-Snmp/rpm.json b/packaging/centreon-plugin-Operatingsystems-Freebsd-Snmp/rpm.json new file mode 100644 index 000000000..d4922ea47 --- /dev/null +++ b/packaging/centreon-plugin-Operatingsystems-Freebsd-Snmp/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(SNMP)", + "perl(DateTime)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Operatingsystems-Hpux-Snmp/deb.json b/packaging/centreon-plugin-Operatingsystems-Hpux-Snmp/deb.json new file mode 100644 index 000000000..d94e32d22 --- /dev/null +++ b/packaging/centreon-plugin-Operatingsystems-Hpux-Snmp/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libsnmp-perl", + "libdatetime-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Operatingsystems-Hpux-Snmp/pkg.json b/packaging/centreon-plugin-Operatingsystems-Hpux-Snmp/pkg.json new file mode 100644 index 000000000..1a7b08b3f --- /dev/null +++ b/packaging/centreon-plugin-Operatingsystems-Hpux-Snmp/pkg.json @@ -0,0 +1,12 @@ +{ + "pkg_name": "centreon-plugin-Operatingsystems-Hpux-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_hpux_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/tcpcon.pm", + "snmp_standard/mode/uptime.pm", + "os/hpux/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Operatingsystems-Hpux-Snmp/rpm.json b/packaging/centreon-plugin-Operatingsystems-Hpux-Snmp/rpm.json new file mode 100644 index 000000000..c7f3ac25e --- /dev/null +++ b/packaging/centreon-plugin-Operatingsystems-Hpux-Snmp/rpm.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "perl(SNMP)", + "perl(DateTime)" + ], + "custom_pkg_data": "Obsoletes: centreon-plugin-Operatingsystems-Hpuux-Snmp" +} diff --git a/packaging/centreon-plugin-Operatingsystems-Linux-Local/deb.json b/packaging/centreon-plugin-Operatingsystems-Linux-Local/deb.json new file mode 100644 index 000000000..8b49667cf --- /dev/null +++ b/packaging/centreon-plugin-Operatingsystems-Linux-Local/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "net-tools", + "quota" + ] +} diff --git a/packaging/centreon-plugin-Operatingsystems-Linux-Local/pkg.json b/packaging/centreon-plugin-Operatingsystems-Linux-Local/pkg.json new file mode 100644 index 000000000..cedd03168 --- /dev/null +++ b/packaging/centreon-plugin-Operatingsystems-Linux-Local/pkg.json @@ -0,0 +1,12 @@ +{ + "pkg_name": "centreon-plugin-Operatingsystems-Linux-Local", + "pkg_summary": "Centreon Plugin to monitor Linux server/equipment using local commands", + "plugin_name": "centreon_linux_local.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/plugins/backend/ssh/", + "centreon/plugins/ssh.pm", + "centreon/plugins/snmp.pm", + "os/linux/local/" + ] +} diff --git a/packaging/centreon-plugin-Operatingsystems-Linux-Local/rpm.json b/packaging/centreon-plugin-Operatingsystems-Linux-Local/rpm.json new file mode 100644 index 000000000..9804af008 --- /dev/null +++ b/packaging/centreon-plugin-Operatingsystems-Linux-Local/rpm.json @@ -0,0 +1,10 @@ +{ + "dependencies": [ + "net-tools", + "quota", + "perl(Data::Dumper)", + "perl(Pod::Parser)", + "perl(Digest::MD5)", + "perl(NetAddr::IP)" + ] +} diff --git a/packaging/centreon-plugin-Operatingsystems-Linux-Snmp/deb.json b/packaging/centreon-plugin-Operatingsystems-Linux-Snmp/deb.json new file mode 100644 index 000000000..bcb1a852d --- /dev/null +++ b/packaging/centreon-plugin-Operatingsystems-Linux-Snmp/deb.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "libsnmp-perl", + "libdatetime-perl", + "libnet-ntp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Operatingsystems-Linux-Snmp/pkg.json b/packaging/centreon-plugin-Operatingsystems-Linux-Snmp/pkg.json new file mode 100644 index 000000000..c80730f87 --- /dev/null +++ b/packaging/centreon-plugin-Operatingsystems-Linux-Snmp/pkg.json @@ -0,0 +1,31 @@ +{ + "pkg_name": "centreon-plugin-Operatingsystems-Linux-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_linux_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/arp.pm", + "snmp_standard/mode/cpu.pm", + "snmp_standard/mode/cpudetailed.pm", + "snmp_standard/mode/diskio.pm", + "snmp_standard/mode/diskusage.pm", + "snmp_standard/mode/inodes.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/loadaverage.pm", + "snmp_standard/mode/listdiskspath.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/listprocesses.pm", + "snmp_standard/mode/liststorages.pm", + "snmp_standard/mode/memory.pm", + "snmp_standard/mode/processcount.pm", + "snmp_standard/mode/storage.pm", + "snmp_standard/mode/swap.pm", + "snmp_standard/mode/ntp.pm", + "snmp_standard/mode/tcpcon.pm", + "snmp_standard/mode/udpcon.pm", + "snmp_standard/mode/uptime.pm", + "os/linux/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Operatingsystems-Linux-Snmp/rpm.json b/packaging/centreon-plugin-Operatingsystems-Linux-Snmp/rpm.json new file mode 100644 index 000000000..f91a6ab68 --- /dev/null +++ b/packaging/centreon-plugin-Operatingsystems-Linux-Snmp/rpm.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "perl(SNMP)", + "perl(DateTime)", + "perl(Net::NTP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Operatingsystems-Linux-Ssh/deb.json b/packaging/centreon-plugin-Operatingsystems-Linux-Ssh/deb.json new file mode 100644 index 000000000..291988004 --- /dev/null +++ b/packaging/centreon-plugin-Operatingsystems-Linux-Ssh/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "plink", + "libssh-session-perl" + ] +} diff --git a/packaging/centreon-plugin-Operatingsystems-Linux-Ssh/pkg.json b/packaging/centreon-plugin-Operatingsystems-Linux-Ssh/pkg.json new file mode 100644 index 000000000..84eac1125 --- /dev/null +++ b/packaging/centreon-plugin-Operatingsystems-Linux-Ssh/pkg.json @@ -0,0 +1,12 @@ +{ + "pkg_name": "centreon-plugin-Operatingsystems-Linux-Ssh", + "pkg_summary": "Centreon Plugin to monitor Linux server/equipment using local commands", + "plugin_name": "centreon_linux_ssh.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "centreon/plugins/backend/ssh/", + "centreon/plugins/ssh.pm", + "centreon/plugins/snmp.pm", + "os/linux/local/" + ] +} diff --git a/packaging/centreon-plugin-Operatingsystems-Linux-Ssh/rpm.json b/packaging/centreon-plugin-Operatingsystems-Linux-Ssh/rpm.json new file mode 100644 index 000000000..48567831d --- /dev/null +++ b/packaging/centreon-plugin-Operatingsystems-Linux-Ssh/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "plink", + "perl(Libssh::Session)" + ] +} diff --git a/packaging/centreon-plugin-Operatingsystems-Mac-Snmp/deb.json b/packaging/centreon-plugin-Operatingsystems-Mac-Snmp/deb.json new file mode 100644 index 000000000..d94e32d22 --- /dev/null +++ b/packaging/centreon-plugin-Operatingsystems-Mac-Snmp/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libsnmp-perl", + "libdatetime-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Operatingsystems-Mac-Snmp/pkg.json b/packaging/centreon-plugin-Operatingsystems-Mac-Snmp/pkg.json new file mode 100644 index 000000000..b84326f86 --- /dev/null +++ b/packaging/centreon-plugin-Operatingsystems-Mac-Snmp/pkg.json @@ -0,0 +1,27 @@ +{ + "pkg_name": "centreon-plugin-Operatingsystems-Mac-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_mac_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/cpu.pm", + "snmp_standard/mode/cpudetailed.pm", + "snmp_standard/mode/diskio.pm", + "snmp_standard/mode/diskusage.pm", + "snmp_standard/mode/inodes.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/loadaverage.pm", + "snmp_standard/mode/listdiskspath.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/listprocesses.pm", + "snmp_standard/mode/liststorages.pm", + "snmp_standard/mode/processcount.pm", + "snmp_standard/mode/storage.pm", + "snmp_standard/mode/swap.pm", + "snmp_standard/mode/tcpcon.pm", + "snmp_standard/mode/uptime.pm", + "os/mac/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Operatingsystems-Mac-Snmp/rpm.json b/packaging/centreon-plugin-Operatingsystems-Mac-Snmp/rpm.json new file mode 100644 index 000000000..d4922ea47 --- /dev/null +++ b/packaging/centreon-plugin-Operatingsystems-Mac-Snmp/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(SNMP)", + "perl(DateTime)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Operatingsystems-Picos-Snmp/deb.json b/packaging/centreon-plugin-Operatingsystems-Picos-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Operatingsystems-Picos-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Operatingsystems-Picos-Snmp/pkg.json b/packaging/centreon-plugin-Operatingsystems-Picos-Snmp/pkg.json new file mode 100644 index 000000000..308bdfb0d --- /dev/null +++ b/packaging/centreon-plugin-Operatingsystems-Picos-Snmp/pkg.json @@ -0,0 +1,12 @@ +{ + "pkg_name": "centreon-plugin-Operatingsystems-Picos-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_picos_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "os/picos/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Operatingsystems-Picos-Snmp/rpm.json b/packaging/centreon-plugin-Operatingsystems-Picos-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Operatingsystems-Picos-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Operatingsystems-Solaris-Snmp/deb.json b/packaging/centreon-plugin-Operatingsystems-Solaris-Snmp/deb.json new file mode 100644 index 000000000..d94e32d22 --- /dev/null +++ b/packaging/centreon-plugin-Operatingsystems-Solaris-Snmp/deb.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "libsnmp-perl", + "libdatetime-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Operatingsystems-Solaris-Snmp/pkg.json b/packaging/centreon-plugin-Operatingsystems-Solaris-Snmp/pkg.json new file mode 100644 index 000000000..1907a1f2b --- /dev/null +++ b/packaging/centreon-plugin-Operatingsystems-Solaris-Snmp/pkg.json @@ -0,0 +1,21 @@ +{ + "pkg_name": "centreon-plugin-Operatingsystems-Solaris-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_solaris_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/cpudetailed.pm", + "snmp_standard/mode/loadaverage.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/listprocesses.pm", + "snmp_standard/mode/liststorages.pm", + "snmp_standard/mode/processcount.pm", + "snmp_standard/mode/storage.pm", + "snmp_standard/mode/tcpcon.pm", + "snmp_standard/mode/uptime.pm", + "os/solaris/snmp" + ] +} diff --git a/packaging/centreon-plugin-Operatingsystems-Solaris-Snmp/rpm.json b/packaging/centreon-plugin-Operatingsystems-Solaris-Snmp/rpm.json new file mode 100644 index 000000000..d4922ea47 --- /dev/null +++ b/packaging/centreon-plugin-Operatingsystems-Solaris-Snmp/rpm.json @@ -0,0 +1,6 @@ +{ + "dependencies": [ + "perl(SNMP)", + "perl(DateTime)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Operatingsystems-Windows-Restapi/deb.json b/packaging/centreon-plugin-Operatingsystems-Windows-Restapi/deb.json new file mode 100644 index 000000000..540c269f3 --- /dev/null +++ b/packaging/centreon-plugin-Operatingsystems-Windows-Restapi/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libjson-perl" + ] +} diff --git a/packaging/centreon-plugin-Operatingsystems-Windows-Restapi/pkg.json b/packaging/centreon-plugin-Operatingsystems-Windows-Restapi/pkg.json new file mode 100644 index 000000000..cbbbe002c --- /dev/null +++ b/packaging/centreon-plugin-Operatingsystems-Windows-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Operatingsystems-Windows-Restapi", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_nsclient_restapi.pl", + "files": [ + "centreon/plugins/script_simple.pm", + "apps/nsclient/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Operatingsystems-Windows-Restapi/rpm.json b/packaging/centreon-plugin-Operatingsystems-Windows-Restapi/rpm.json new file mode 100644 index 000000000..186961460 --- /dev/null +++ b/packaging/centreon-plugin-Operatingsystems-Windows-Restapi/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(JSON)" + ] +} diff --git a/packaging/centreon-plugin-Operatingsystems-Windows-Snmp/deb.json b/packaging/centreon-plugin-Operatingsystems-Windows-Snmp/deb.json new file mode 100644 index 000000000..bcb1a852d --- /dev/null +++ b/packaging/centreon-plugin-Operatingsystems-Windows-Snmp/deb.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "libsnmp-perl", + "libdatetime-perl", + "libnet-ntp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Operatingsystems-Windows-Snmp/pkg.json b/packaging/centreon-plugin-Operatingsystems-Windows-Snmp/pkg.json new file mode 100644 index 000000000..c38492582 --- /dev/null +++ b/packaging/centreon-plugin-Operatingsystems-Windows-Snmp/pkg.json @@ -0,0 +1,20 @@ +{ + "pkg_name": "centreon-plugin-Operatingsystems-Windows-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_windows_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "snmp_standard/mode/cpu.pm", + "snmp_standard/mode/interfaces.pm", + "snmp_standard/mode/listinterfaces.pm", + "snmp_standard/mode/resources/", + "snmp_standard/mode/listprocesses.pm", + "snmp_standard/mode/liststorages.pm", + "snmp_standard/mode/processcount.pm", + "snmp_standard/mode/storage.pm", + "snmp_standard/mode/ntp.pm", + "snmp_standard/mode/uptime.pm", + "os/windows/snmp/" + ] +} diff --git a/packaging/centreon-plugin-Operatingsystems-Windows-Snmp/rpm.json b/packaging/centreon-plugin-Operatingsystems-Windows-Snmp/rpm.json new file mode 100644 index 000000000..f91a6ab68 --- /dev/null +++ b/packaging/centreon-plugin-Operatingsystems-Windows-Snmp/rpm.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "perl(SNMP)", + "perl(DateTime)", + "perl(Net::NTP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Operatingsystems-Windows-Wsman/deb.json b/packaging/centreon-plugin-Operatingsystems-Windows-Wsman/deb.json new file mode 100644 index 000000000..91bec50d3 --- /dev/null +++ b/packaging/centreon-plugin-Operatingsystems-Windows-Wsman/deb.json @@ -0,0 +1,9 @@ +{ + "dependencies": [ + "libopenwsman-perl", + "libmime-base64-perl", + "libdigest-md5-perl", + "libdatetime-perl", + "libtime-hires-perl" + ] +} diff --git a/packaging/centreon-plugin-Operatingsystems-Windows-Wsman/pkg.json b/packaging/centreon-plugin-Operatingsystems-Windows-Wsman/pkg.json new file mode 100644 index 000000000..4b8fff21d --- /dev/null +++ b/packaging/centreon-plugin-Operatingsystems-Windows-Wsman/pkg.json @@ -0,0 +1,12 @@ +{ + "pkg_name": "centreon-plugin-Operatingsystems-Windows-Wsman", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_windows_wsman.pl", + "files": [ + "centreon/plugins/script_wsman.pm", + "centreon/plugins/wsman.pm", + "os/windows/wsman/", + "centreon/common/powershell/functions.pm", + "centreon/common/powershell/windows/pendingreboot.pm" + ] +} diff --git a/packaging/centreon-plugin-Operatingsystems-Windows-Wsman/rpm.json b/packaging/centreon-plugin-Operatingsystems-Windows-Wsman/rpm.json new file mode 100644 index 000000000..2c79f3ff1 --- /dev/null +++ b/packaging/centreon-plugin-Operatingsystems-Windows-Wsman/rpm.json @@ -0,0 +1,10 @@ +{ + "dependencies": [ + "perl(openwsman)", + "perl(MIME::Base64)", + "perl(Digest::MD5)", + "perl(DateTime)", + "perl(POSIX)", + "perl(Time::HiRes)" + ] +} diff --git a/packaging/centreon-plugin-Virtualization-Hpe-Simplivity-Restapi/deb.json b/packaging/centreon-plugin-Virtualization-Hpe-Simplivity-Restapi/deb.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Virtualization-Hpe-Simplivity-Restapi/deb.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Virtualization-Hpe-Simplivity-Restapi/pkg.json b/packaging/centreon-plugin-Virtualization-Hpe-Simplivity-Restapi/pkg.json new file mode 100644 index 000000000..5d05590ec --- /dev/null +++ b/packaging/centreon-plugin-Virtualization-Hpe-Simplivity-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Virtualization-Hpe-Simplivity-Restapi", + "pkg_summary": "Centreon Plugin to monitor HPE Simplivity using RestAPI", + "plugin_name": "centreon_hpe_simplivity_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/virtualization/hpe/simplivity/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Virtualization-Hpe-Simplivity-Restapi/rpm.json b/packaging/centreon-plugin-Virtualization-Hpe-Simplivity-Restapi/rpm.json new file mode 100644 index 000000000..9757fe112 --- /dev/null +++ b/packaging/centreon-plugin-Virtualization-Hpe-Simplivity-Restapi/rpm.json @@ -0,0 +1,4 @@ +{ + "dependencies": [ + ] +} diff --git a/packaging/centreon-plugin-Virtualization-Nutanix-Snmp/deb.json b/packaging/centreon-plugin-Virtualization-Nutanix-Snmp/deb.json new file mode 100644 index 000000000..663aaaceb --- /dev/null +++ b/packaging/centreon-plugin-Virtualization-Nutanix-Snmp/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libsnmp-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Virtualization-Nutanix-Snmp/pkg.json b/packaging/centreon-plugin-Virtualization-Nutanix-Snmp/pkg.json new file mode 100644 index 000000000..f10606625 --- /dev/null +++ b/packaging/centreon-plugin-Virtualization-Nutanix-Snmp/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Virtualization-Nutanix-Snmp", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_nutanix_snmp.pl", + "files": [ + "centreon/plugins/script_snmp.pm", + "centreon/plugins/snmp.pm", + "cloud/nutanix/snmp/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Virtualization-Nutanix-Snmp/rpm.json b/packaging/centreon-plugin-Virtualization-Nutanix-Snmp/rpm.json new file mode 100644 index 000000000..418a331fc --- /dev/null +++ b/packaging/centreon-plugin-Virtualization-Nutanix-Snmp/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(SNMP)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Virtualization-Proxmox-Ve-Restapi/deb.json b/packaging/centreon-plugin-Virtualization-Proxmox-Ve-Restapi/deb.json new file mode 100644 index 000000000..540c269f3 --- /dev/null +++ b/packaging/centreon-plugin-Virtualization-Proxmox-Ve-Restapi/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libjson-perl" + ] +} diff --git a/packaging/centreon-plugin-Virtualization-Proxmox-Ve-Restapi/pkg.json b/packaging/centreon-plugin-Virtualization-Proxmox-Ve-Restapi/pkg.json new file mode 100644 index 000000000..8b68a9b93 --- /dev/null +++ b/packaging/centreon-plugin-Virtualization-Proxmox-Ve-Restapi/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Virtualization-Proxmox-Ve-Restapi", + "pkg_summary": "Centreon Plugin to monitor Proxmox Virtual Environment using RestAPI", + "plugin_name": "centreon_proxmox_ve_restapi.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/proxmox/ve/restapi/" + ] +} diff --git a/packaging/centreon-plugin-Virtualization-Proxmox-Ve-Restapi/rpm.json b/packaging/centreon-plugin-Virtualization-Proxmox-Ve-Restapi/rpm.json new file mode 100644 index 000000000..186961460 --- /dev/null +++ b/packaging/centreon-plugin-Virtualization-Proxmox-Ve-Restapi/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(JSON)" + ] +} diff --git a/packaging/centreon-plugin-Virtualization-Vmware2-Connector-Plugin/deb.json b/packaging/centreon-plugin-Virtualization-Vmware2-Connector-Plugin/deb.json new file mode 100644 index 000000000..624779bd6 --- /dev/null +++ b/packaging/centreon-plugin-Virtualization-Vmware2-Connector-Plugin/deb.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "libjson-perl", + "zmq-libzmq4-perl", + "libuuid-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Virtualization-Vmware2-Connector-Plugin/pkg.json b/packaging/centreon-plugin-Virtualization-Vmware2-Connector-Plugin/pkg.json new file mode 100644 index 000000000..141f81d4a --- /dev/null +++ b/packaging/centreon-plugin-Virtualization-Vmware2-Connector-Plugin/pkg.json @@ -0,0 +1,9 @@ +{ + "pkg_name": "centreon-plugin-Virtualization-Vmware2-Connector-Plugin", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_vmware_connector_client.pl", + "files": [ + "centreon/plugins/script_custom.pm", + "apps/vmware/connector/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Virtualization-Vmware2-Connector-Plugin/rpm.json b/packaging/centreon-plugin-Virtualization-Vmware2-Connector-Plugin/rpm.json new file mode 100644 index 000000000..591f45e53 --- /dev/null +++ b/packaging/centreon-plugin-Virtualization-Vmware2-Connector-Plugin/rpm.json @@ -0,0 +1,7 @@ +{ + "dependencies": [ + "perl(JSON)", + "perl(ZMQ::LibZMQ4)", + "perl(UUID)" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Virtualization-Vmware2-Esx-Wsman/deb.json b/packaging/centreon-plugin-Virtualization-Vmware2-Esx-Wsman/deb.json new file mode 100644 index 000000000..dbc520f72 --- /dev/null +++ b/packaging/centreon-plugin-Virtualization-Vmware2-Esx-Wsman/deb.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "libopenwsman-perl" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Virtualization-Vmware2-Esx-Wsman/pkg.json b/packaging/centreon-plugin-Virtualization-Vmware2-Esx-Wsman/pkg.json new file mode 100644 index 000000000..c510d7084 --- /dev/null +++ b/packaging/centreon-plugin-Virtualization-Vmware2-Esx-Wsman/pkg.json @@ -0,0 +1,10 @@ +{ + "pkg_name": "centreon-plugin-Virtualization-Vmware2-Esx-Wsman", + "pkg_summary": "Centreon Plugin", + "plugin_name": "centreon_vmware_esx_wsman.pl", + "files": [ + "centreon/plugins/script_wsman.pm", + "centreon/plugins/wsman.pm", + "apps/vmware/wsman/" + ] +} \ No newline at end of file diff --git a/packaging/centreon-plugin-Virtualization-Vmware2-Esx-Wsman/rpm.json b/packaging/centreon-plugin-Virtualization-Vmware2-Esx-Wsman/rpm.json new file mode 100644 index 000000000..d754f4d6e --- /dev/null +++ b/packaging/centreon-plugin-Virtualization-Vmware2-Esx-Wsman/rpm.json @@ -0,0 +1,5 @@ +{ + "dependencies": [ + "perl(openwsman)" + ] +}