Push pack services and fix for failing tests
This commit is contained in:
parent
280633b28a
commit
cdfbc60030
21 changed files with 415 additions and 378 deletions
|
@ -25,9 +25,12 @@ use Illuminate\Database\Seeder;
|
|||
use Pterodactyl\Models\Service;
|
||||
use Pterodactyl\Models\ServiceOption;
|
||||
use Pterodactyl\Models\ServiceVariable;
|
||||
use Pterodactyl\Traits\Services\CreatesServiceIndex;
|
||||
|
||||
class VoiceServiceTableSeeder extends Seeder
|
||||
{
|
||||
use CreatesServiceIndex;
|
||||
|
||||
/**
|
||||
* The core service ID.
|
||||
*
|
||||
|
@ -63,7 +66,7 @@ class VoiceServiceTableSeeder extends Seeder
|
|||
'name' => 'Voice Servers',
|
||||
'description' => 'Voice servers such as Mumble and Teamspeak 3.',
|
||||
'startup' => '',
|
||||
'index_file' => Service::defaultIndexFile(),
|
||||
'index_file' => $this->getIndexScript(),
|
||||
]);
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue