X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2FSetup.pm;h=29ca9a8723dd9437c3b7938aab526d23ea39cd59;hb=b49c1bd5510a5f10b05bffacc6cc8b6a1b2153e8;hp=2dc90385d5d4dad35a27b7fc17ec97a1756f7c3b;hpb=50af7897706e41b23ea9fd6835265ec530d92af4;p=freeside.git diff --git a/FS/FS/Setup.pm b/FS/FS/Setup.pm index 2dc90385d..29ca9a872 100644 --- a/FS/FS/Setup.pm +++ b/FS/FS/Setup.pm @@ -146,23 +146,29 @@ sub populate_initial_data { foreach my $table ( keys %$data ) { - warn "popuilating $table\n"; + #warn "popuilating $table\n"; my $class = "FS::$table"; eval "use $class;"; die $@ if $@; $class->_populate_initial_data(%opt) - if $class->can('_populate_inital_data'); + if $class->can('_populate_initial_data'); my @records = @{ $data->{$table} }; foreach my $record ( @records ) { + my $args = delete($record->{'_insert_args'}) || []; my $object = $class->new( $record ); my $error = $object->insert( @$args ); die "error inserting record into $table: $error\n" if $error; + + #my $pkey = $object->primary_key; + #my $pkeyvalue = $object->$pkey(); + #warn " inserted $pkeyvalue\n"; + } } @@ -175,6 +181,16 @@ sub initial_data { #tie my %hash, 'Tie::DxHash', tie my %hash, 'Tie::IxHash', + #bootstrap user + 'access_user' => [ + { 'username' => 'fs_bootstrap', + '_password' => 'changeme', #will trigger warning if you try to enable + 'last' => 'User', + 'first' => 'Bootstrap', + 'disabled' => 'Y', + }, + ], + #superuser group 'access_group' => [ { 'groupname' => 'Superuser' }, @@ -342,11 +358,12 @@ sub initial_data { #not yet.... - #) - #usage classes 'usage_class' => [], + #phone types + 'phone_type' => [], + ; \%hash; @@ -358,7 +375,7 @@ sub populate_access { use FS::AccessRight; use FS::access_right; - foreach my $rightname ( FS::AccessRight->rights ) { + foreach my $rightname ( FS::AccessRight->default_superuser_rights ) { my $access_right = new FS::access_right { 'righttype' => 'FS::access_group', 'rightobjnum' => 1, #$supergroup->groupnum,