From 7112f69d9eb66756f45ddf21fb91b458e22e0023 Mon Sep 17 00:00:00 2001 From: Dobrica Pavlinusic Date: Fri, 26 Oct 2007 21:25:08 +0000 Subject: [PATCH] everything uses yaml for now git-svn-id: https://perl-cwmp.googlecode.com/svn/branches/store-pluggable@137 836a5e1a-633d-0410-964b-294494ad4392 --- Makefile.PL | 2 +- bin/acs.pl | 3 ++- t/05-store.t | 3 ++- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Makefile.PL b/Makefile.PL index 68a498d..2901ef7 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -23,7 +23,7 @@ requires 'Module::Pluggable'; build_requires 'Test::More'; my_targets(); -clean_files('dump/*'); +clean_files('dump/* yaml state.db'); auto_install; diff --git a/bin/acs.pl b/bin/acs.pl index 01d2c5f..6956123 100755 --- a/bin/acs.pl +++ b/bin/acs.pl @@ -21,7 +21,8 @@ GetOptions( my $server = CWMP::Server->new({ port => $port, store => { - module => 'DBMDeep', +# module => 'DBMDeep', + module => 'YAML', store_path => 'state.db', }, debug => $debug, diff --git a/t/05-store.t b/t/05-store.t index fc848d1..e458d42 100755 --- a/t/05-store.t +++ b/t/05-store.t @@ -23,7 +23,8 @@ unlink $path if -e $path; ok( my $store = CWMP::Store->new({ debug => $debug, - module => 'DBMDeep', +# module => 'DBMDeep', + module => 'YAML', path => $path, }), 'new' ); isa_ok( $store, 'CWMP::Store' ); -- 2.20.1