]> git.proxmox.com Git - mirror_smartmontools-debian.git/blob - examplescripts/Example3
6a1b11cdfef8cf821ad5f732adcbab67623cd516
[mirror_smartmontools-debian.git] / examplescripts / Example3
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
14 wall 'Problem detected with disk: ' "$SMARTD_DEVICESTRING"
15 wall 'Warning message from smartd is: ' "$SMARTD_MESSAGE"
16 wall 'Shutting down machine in 30 seconds... '
17
18 # Wait half a minute
19 sleep 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