From 5a52855c1da2cb4716587bf0223c6d20eddaf00a Mon Sep 17 00:00:00 2001 From: mpalmer Date: Mon, 18 Dec 2006 20:49:08 +0000 Subject: Fix up a problem with initialising an sqlite3 data store, presumably only with older versions of Rails git-svn-id: https://reductivelabs.com/svn/puppet/trunk@1949 980ebf18-57e1-0310-9a29-db15c13687c0 --- lib/puppet/rails.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/puppet/rails.rb b/lib/puppet/rails.rb index 2ad25a003..b3795f4e0 100644 --- a/lib/puppet/rails.rb +++ b/lib/puppet/rails.rb @@ -41,7 +41,7 @@ module Puppet::Rails args = {:adapter => Puppet[:dbadapter]} case Puppet[:dbadapter] when "sqlite3": - args[:database] = Puppet[:dblocation] + args[:dbfile] = Puppet[:dblocation] when "mysql": args[:host] = Puppet[:dbserver] -- cgit