From 22d91d5739b4505662d70527026576288754da5c Mon Sep 17 00:00:00 2001 From: xntrik Date: Thu, 26 May 2011 23:49:54 +0000 Subject: [PATCH] (Fixes issue 343) - more notes about MySQL Deps in config.yaml git-svn-id: https://beef.googlecode.com/svn/trunk@987 b87d56ec-f9c0-11de-8c8a-61c5e9addfc9 --- config.yaml | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/config.yaml b/config.yaml index 9d8d5a82e..04a6e37a9 100644 --- a/config.yaml +++ b/config.yaml @@ -24,10 +24,16 @@ beef: database: #supported DBs: sqlite, mysql + default: "sqlite" - # please note that the db should exists. Schema will be created automatically. - # mysql> create database beef; - # mysql> grant all privileges on beef.* to 'beef'@'localhost' identified by 'beef123'; + # MySQL Notes: + # Your system will require MySQL, MySQL-Server, MySQL-Devel and Ruby's MySQL libraries installed + # You will also need to "sudo gem install dm-mysql-adapter" + # + # please note that the db should exists. Schema will be created automatically. + # mysql> create database beef; + # mysql> grant all privileges on beef.* to 'beef'@'localhost' identified by 'beef123'; + mysql: db_host: "localhost" db_name: "beef" @@ -46,4 +52,4 @@ beef: proxy: enable: true metasploit: - enable: true + enable: true