Some fixes for registering hosts, enable jobs to go to postgres, initial setup fixes
This commit is contained in:
@@ -45,7 +45,6 @@ class InitialSetupSeeder extends Seeder
|
||||
$do = new Domain;
|
||||
$do->forceFill([
|
||||
'name'=>'private',
|
||||
'default'=>TRUE,
|
||||
'active'=>TRUE,
|
||||
'public'=>TRUE,
|
||||
'notes'=>'PrivateNet: Internal Testing Network'
|
||||
@@ -55,6 +54,7 @@ class InitialSetupSeeder extends Seeder
|
||||
$zo = new Zone;
|
||||
$zo->forceFill([
|
||||
'zone_id'=>'10',
|
||||
'default'=>TRUE,
|
||||
'active'=>TRUE,
|
||||
'system_id'=>$so->id,
|
||||
]);
|
||||
@@ -83,6 +83,7 @@ class InitialSetupSeeder extends Seeder
|
||||
'name'=>'-BAD_AREA',
|
||||
'description'=>'Inbound invalid echomail',
|
||||
'active'=>TRUE,
|
||||
'public'=>TRUE,
|
||||
'domain_id'=>$do->id,
|
||||
]);
|
||||
|
||||
@@ -90,6 +91,7 @@ class InitialSetupSeeder extends Seeder
|
||||
'name'=>'-BAD_AREA',
|
||||
'description'=>'Inbound invalid files',
|
||||
'active'=>TRUE,
|
||||
'public'=>TRUE,
|
||||
'domain_id'=>$do->id,
|
||||
]);
|
||||
}
|
||||
|
Reference in New Issue
Block a user