Created
August 23, 2013 20:19
-
-
Save thefotios/6323569 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
all_user_procs = %x[/bin/ps -e -o uid,pid | /bin/egrep "^\s+[0-9]{3,4}"] | |
pids_by_user = all_user_procs.lines.inject(Hash.new{|h,k| h[k] = []}) do |h,line| | |
(uid,pid) = line.split.map(&:to_i) | |
h[uid] << pid | |
h | |
end | |
(missing_uids, ps_procs) = pids_by_user.partition do |uid,pids| | |
$USERS.select { |u| u.uid == uid }.empty? | |
end | |
missing_uids.each do |uid,pids| | |
pids.each do |pid| | |
do_fail("Process #{pid} is owned by a gear that's no longer on the system, uid: #{uid}") | |
end | |
end | |
ps_procs = ps_procs.inject({}) do |h,(uid,pids)| | |
name = $USERS.select { |u| u.uid == uid }.first.name | |
h[name] = pids.uniq | |
h | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment