--- google/bin/acs.pl 2007/06/20 21:31:03 57 +++ google/trunk/bin/acs.pl 2007/10/27 23:06:09 164 @@ -12,16 +12,25 @@ my $port = 3333; my $debug = 0; +my $store_path = './'; +my $store_plugin = 'YAML'; GetOptions( 'debug+' => \$debug, 'port=i' => \$port, + 'store-path=s' => \$store_path, + 'store-plugin=s' => \$store_plugin, ); my $server = CWMP::Server->new({ port => $port, + store => { + module => $store_plugin, + path => $store_path, + debug => $debug, + }, debug => $debug, - queue => [ qw/ + default_queue => [ qw/ GetRPCMethods GetParameterNames / ],