Skip to content

Instantly share code, notes, and snippets.

@joemiller
Created December 20, 2011 20:47
Show Gist options
  • Save joemiller/1503200 to your computer and use it in GitHub Desktop.
Save joemiller/1503200 to your computer and use it in GitHub Desktop.
require 'daemons/daemonize'
module Sensu
VERSION = "0.8.19"
def self.write_pid(pid_file)
File.open(pid_file, 'w') { |f| f.write(Process.pid.to_s + "\n") }
end
def self.daemonize(log_file)
Daemonize.daemonize(log_file)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment