403Webshell
Server IP : 172.67.157.124  /  Your IP : 216.73.216.213
Web Server : LiteSpeed
System : Linux s12482.usc1.stableserver.net 5.14.0-570.32.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Aug 6 11:30:41 EDT 2025 x86_64
User : snownico ( 1231)
PHP Version : 8.2.31
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /lib64/nagios/plugins/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /lib64/nagios/plugins/check_sssd
#!/bin/bash
# check_sssd on EL6+
# Requirements:
# Author: Tsvetan Gerov <[email protected]>
# Version 0.2

# Initialize flags and error message
CRITICAL=false
WARNING=false
ERROR_MESSAGE=""

if [ -f "/etc/redhat-release" ]; then
        OSRELEASE=$(cat /etc/redhat-release  | tr -dc '0-9.'|cut -d \. -f1)
else
        OSRELEASE="0"
fi

check_sssd() {
    if [ "$OSRELEASE" -eq 6 ]; then
        if [ ! -f "/etc/init.d/sssd" ]; then
            CRITICAL=true
            ERROR_MESSAGE+="sssd service is missing, "
        else
            if ! /etc/init.d/sssd status >/dev/null 2>&1; then
                CRITICAL=true
                ERROR_MESSAGE+="sssd is down, "
            fi
        fi
    else
        if [ ! -f "/usr/lib/systemd/system/sssd.service" ]; then
            CRITICAL=true
            ERROR_MESSAGE+="sssd service is missing, "
        else
            if ! systemctl is-active sssd.service >/dev/null 2>&1; then
                CRITICAL=true
                ERROR_MESSAGE+="sssd is down, "
            fi
        fi
    fi
}

# Perform checks
check_sssd

# Return final state
if [ "$CRITICAL" = true ]; then
    echo "[CRITICAL] ${ERROR_MESSAGE%, }"
    exit 2
elif [ "$WARNING" = true ]; then
    echo "[WARNING] ${ERROR_MESSAGE%, }"
    exit 1
else
    echo "[OK] All LDAP services are running correctly."
    exit 0
fi


Youez - 2016 - github.com/yon3zu
LinuXploit