Skip to content

Instantly share code, notes, and snippets.

@GriffithStudio
Created August 27, 2012 18:10
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GriffithStudio/3490955 to your computer and use it in GitHub Desktop.
Save GriffithStudio/3490955 to your computer and use it in GitHub Desktop.
Promise Pegasus RAID Scripts

Promise Pegasus RAID Scripts

Background

The Pegasus R6 is an incredible storage device, but it lacks the reasonable ability to send email alerts. Following Angel's blog post here here, I modified the scripts so they could run from launchd. Firstly, I had to use the PTY public class in order to communicate with the promiseutil command. This is because promiseutil is an interactive program that assumes that it is a run through TTY. Secondly, I added in system logging in case the email feature fails for some reason.

launchd

While these scripts work fine from the terminal's cli, running them through launchd can cause you problems because of the spawning subprocesses (mail and promiseutil). In order to get those to work properly, you must also use the AbandonProcessGroup directive. Below is the example:

 <key>AbandonProcessGroup</key>
 <true/>

You may also need to run the plist files from a user's LaunchAgents directory instead of the system's, but YMMV.

Usage

A lot of isolated testing went into these scripts. We ran these scripts from our machines attached to our Pegasus units, making those unit's fail multiple times in order trigger the events. That being said, we make no guarantee that the scripts will work for you in your environment. In fact, they probably won't. You are encouraged to run the tests yourself and modify the scripts as you see fit.

#!/usr/bin/env ruby
require "pty"
require "syslog"
email = {
:title => "RAID monitor",
:sender => "sender@example.com",
:recipient => "recipient@example.com"
}
log_message = "RAID monitor script completed"
results = ""
# use PTY to simulate a terminal interaction for the promiseutil workaround.
PTY.spawn("promiseutil -C phydrv") do |output,input,pid|
output.each do |l|
next unless l =~ /^\d/
unless l =~ /OK/
results << "RAID 1: BAD DRIVE \n #{l} \n"
end
end
end
# email the report to the user(s)
if !results.empty?
system "echo \"#{results}\" | mail -s '#{email[:title]}' '#{email[:recipient]}' -f '#{email[:sender]}'"
end
# log the fact that the script was run successfully
Syslog.open($0, Syslog::LOG_PID | Syslog::LOG_CONS) { |s| s.warning "#{log_message}" }
#!/usr/bin/env ruby
require "pty"
require "syslog"
email = {
:title => "RAID report",
:sender => "sender@example.com",
:recipient => "recipient@example.com"
}
log_message = "RAID report script completed"
results = ""
# use PTY to simulate a terminal interaction for the promiseutil workaround.
PTY.spawn("promiseutil -C stats") do |output,input,pid|
output.each { |line| results << line }
end
# email the report to the user(s)
system "echo \"#{results}\" | mail -s '#{email[:title]}' '#{email[:recipient]}' -f '#{email[:sender]}'"
# log the fact that the script was run successfully
Syslog.open($0, Syslog::LOG_PID | Syslog::LOG_CONS) { |s| s.warning "#{log_message}" }
#!/usr/bin/env ruby
require "pty"
require "syslog"
log_message = "RAID alarm has been toggled"
# use PTY to simulate a terminal interaction for the promiseutil workaround.
PTY.spawn("promiseutil -C buzz") do |output,input,pid|
output.each do |l|
if l =~ /Silent/
PTY.spawn("promiseutil -C buzz -a on") do |sub_output,sub_input,sub_pid|
end
elsif l =~ /Sounding/
PTY.spawn("promiseutil -C buzz -a off") do |sub_output,sub_input,sub_pid|
end
end
end
end
# log the fact that the buzzer was toggled
Syslog.open($0, Syslog::LOG_PID | Syslog::LOG_CONS) { |s| s.warning "#{log_message}" }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment