Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /usr/share/doc/mdadm/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //usr/share/doc/mdadm/syslog-events
#!/bin/sh
#
# sample event handling script for mdadm
# e.g. mdadm --follow --program=/sbin/syslog-events --scan
#
# License: GPL ver.2
# Copyright (C) 2004 SEKINE Tatsuo <[email protected]>

event="$1"
dev="$2"
disc="$3"

facility="kern"
tag="mdmonitor"

case x"${event}" in
    xFail*) priority="error" ;;
    xTest*) priority="debug" ;;
    x*)     priority="info"  ;;
esac

msg="${event} event on ${dev}"
if [ x"${disc}" != x ]; then
     msg="${msg}, related to disc ${disc}"
fi

exec logger -t "${tag}" -p "${facility}.${priority}" -- "${msg}"

Spamworldpro Mini