class Servolux::PidFile

def filename

Returns the full name of the PID file including path and extension.
def filename
  fn = name.to_s.downcase.tr(" ","_") + ".pid"
  fn = File.join(path, fn) unless path.nil?
  fn
end