HEX
Server: LiteSpeed
System: Linux shams.tasjeel.ae 5.14.0-611.5.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Nov 11 08:09:09 EST 2025 x86_64
User: infowars (1469)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: //lib/check_mk_agent/plugins/nfsexports.solaris
#!/usr/bin/bash
# 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"

# Checkmk agent plugin for monitoring nfsexports on Solaris. This plugin
# has been tested with solaris 10 in a standalone and cluster setting.

clusterconfigdir="/etc/cluster/ccr/global/directory"
if [ -r "${clusterconfigdir}" ]; then
    # is a clustered nfs server
    nfsconfig="/etc/cluster/ccr/global/$(grep "rgm" "${clusterconfigdir}" | grep "nfs" | grep "rg_")"
    if [ -r "${nfsconfig}" ]; then
        Pathprefix="$(grep Pathprefix "${nfsconfig}" | awk '{ print $2 }')/SUNW.nfs"
        dfstabfile="${Pathprefix}/dfstab.$(
            grep -v FilesystemMountPoints "${nfsconfig}" |
                grep SUNW.nfs |
                awk '{ print $1 }' |
                sed -e 's/RS_//'
        )"
        if [ -r "${dfstabfile}" ]; then
            EXPORTS="$(grep -v "^\#" "${dfstabfile}" | grep -v "^$")"
            ps -aef | grep "nfsd" | grep "${Pathprefix}" >/dev/null && DAEMONS="ok"
        fi
    fi
else
    # is a standalone nfs server
    dfstabfile="/etc/dfs/dfstab"
    if [ -x "/usr/sbin/zfs" ]; then
        # NFS under Solaris version >= 11
        # Note that 'dfstabfile' is still present in this version, but does
        # nothing. See SUP-10936.
        # This order of operation is based on the assumption that the zfs
        # binary is either absent for earlier Solaris versions or lists the NFS
        # correctly. If it turns out that this is not the case, the approach needs to be
        # changed.
        EXPORTS="$(zfs get sharenfs)"
    elif [ -r "${dfstabfile}" ]; then
        # NFS under Solaris version <= 10
        EXPORTS="$(grep -v "^\#" "${dfstabfile}" | grep -v "^$")"
    fi

    if [ -n "${EXPORTS}" ]; then
        svcs -a | grep "nfs/server" | grep "^online" >/dev/null && DAEMONS="ok"
    fi
fi

# any exports or have running daemons? then look for registered exports
if [ -n "${EXPORTS}" ]; then
    echo "<<<nfsexports>>>"
    if [ -n "${DAEMONS}" ]; then
        showmount -e | grep "^/"
    fi
fi