| Skip Navigation Links | |
| Exit Print View | |
|
Sun QFS and Sun Storage Archive Manager 5.3 Reference Manual Sun QFS and Sun Storage Archive Manager 5.3 Information Library |
1. User Commands (Man Pages Section 1)
2. Maintenance Commands (Man Pages Section 1M)
3. Library Functions (Man Pages Section 3)
4. Library Functions (Man Pages Section 3X)
5. File Formats (Man Pages Section 4)
NAME
dev_down.sh - SAM-QFS device down notification script
SYNOPSIS
/etc/opt/SUNWsamfs/scripts/dev_down.sh prg_name pid
log_level msg_no eq
AVAILABILITY
SUNWsamfs
DESCRIPTION
The /etc/opt/SUNWsamfs/scripts/dev_down.sh script can be
executed by the sam-robotsd(1M) daemon when a device is
marked down or off.
To enable this feature, copy
/opt/SUNWsamfs/examples/dev_down.sh to
/etc/opt/SUNWsamfs/scripts/dev_down.sh and modify it to take
the desired action for your installation.
As released, the /opt/SUNWsamfs/examples/dev_down.sh script
sends email to root with the relevant information.
OPTIONS
This script accepts the following arguments:
prg_name The name of the program that is calling this
script.
pid The process ID of the program that is calling this
script.
log_level Log priority level. An integer number such that
0 < log_level < 7. 0 is highest priority, and 7
is lowest priority.
msg_no The message number as found in the message
catalog.
eq The Equipment Number of the device.
EXAMPLE
The following is an example
/etc/opt/SUNWsamfs/scripts/dev_down.sh file:
#!/bin/sh
#
# /etc/opt/SUNWsamfs/scripts/dev_down.sh - Take action in the
# event a device is marked down by the SAM-QFS software.
#
# arguments: $1: caller
# $2: caller's pid
# $3: logging level
# $4: message catalog number
# $5: device identifier
#
# Change the email address on the following line to send
# email to the appropriate recipient.
/usr/ucb/mail -s "SAM-QFS Device downed" root <<EOF
`date`
SAM-QFS has marked the device $5,
as down or off. Check device log.
EOF
The example sends email to root to report that a device has
been marked down or off.
SEE ALSO
sam-robotsd(1M).