diff --git a/.pkgr.yml b/.pkgr.yml index 9d056067e..6ac1bfcb1 100644 --- a/.pkgr.yml +++ b/.pkgr.yml @@ -10,9 +10,10 @@ group: "zammad" after_install: packaging/hooks/postinstall.sh before: - - cp config/database.yml.unittest config/database.yml + - cp config/database.yml.pkgr config/database.yml - cat config/database.yml - env + - gem install sqlite3 env: - RAILS_ENV=production diff --git a/config/database.yml.pkgr b/config/database.yml.pkgr new file mode 100644 index 000000000..cd358e88b --- /dev/null +++ b/config/database.yml.pkgr @@ -0,0 +1,6 @@ +production: + adapter: sqlite3 + database: db/test.sqlite3 + timeout: 12000 + pool: 50 +