]> git.proxmox.com Git - mirror_smartmontools-debian.git/blame - examplescripts/Example3
Imported smartmontools-5.27.cvs20061002
[mirror_smartmontools-debian.git] / examplescripts / Example3
CommitLineData
832b75ed
GG
1#! /bin/bash
2#
3# This is a script from the smartmontools examplescripts/ directory.
4# It can be used as an argument to the -M exec Directive in
5# /etc/smartd.conf, in a line like
6# -m <nomailer> -M exec /path/to/this/file
7#
8# Please see man 8 smartd or man 5 smartd.conf for further
9# information.
10#
11# $Id: Example3,v 1.4 2003/08/17 09:15:56 ballen4705 Exp $
12
13# Warn all users of a problem
14wall 'Problem detected with disk: ' "$SMARTD_DEVICESTRING"
15wall 'Warning message from smartd is: ' "$SMARTD_MESSAGE"
16wall 'Shutting down machine in 30 seconds... '
17
18# Wait half a minute
19sleep 30
20
21# Power down the machine (uncomment the shutdown command if you really
22# want to do this!)
23
24# /sbin/shutdown -hf now
25