# File lib/picnic/service_control.rb, line 95
    def initialize(app, options = {})
      @app = app

      @options = options
      @options[:bin_file]  ||= "bin/#{app}"
      @options[:pid_file]  ||= "/etc/#{app}/#{app}.pid"
      @options[:conf_file] ||= nil
      @options[:verbose]   ||= false
      
      @options = options
    end