Guest User

Untitled

a guest
Jul 19th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. begin
  2. require 'sys/proctable'
  3. rescue LoadError
  4. Chef::Log.warn("Missing gem 'sys-proctable'")
  5. end
  6.  
  7. module Rackspace
  8. module Proc
  9. def getProcPid(name)
  10. Sys::ProcTable.ps{ |p|
  11. if /#{name}/ =~ p.cmdline
  12. return p.pid
  13. end
  14. }
  15. end
  16. end
  17. end
Add Comment
Please, Sign In to add comment