# File firewall/lib/symbiosis/firewall/blacklist_db.rb, line 12
      def initialize(database = '/var/lib/symbiosis/firewall-blacklist.db')
        #
        # hmm.. maybe we should deal with this a bit better?
        #
        @dbh = SQLite3::Database.new(database)
        @tbl_name = "blacklist"
        create_table
      end