Fix: Pipe-Signaturen durch $aliases ersetzen — clubird:* Befehle waren nicht aufrufbar
parent
14901a40e3
commit
b6475fea75
|
|
@ -6,7 +6,8 @@ use Illuminate\Console\Command;
|
|||
|
||||
class CheckUpdates extends Command
|
||||
{
|
||||
protected $signature = 'clubird:check-updates|mailwolt:check-updates';
|
||||
protected $signature = 'clubird:check-updates';
|
||||
protected $aliases = ['mailwolt:check-updates'];
|
||||
protected $description = 'Check for newer CluBird releases via git tags';
|
||||
|
||||
public function handle(): int
|
||||
|
|
|
|||
|
|
@ -6,7 +6,8 @@ use Illuminate\Console\Command;
|
|||
|
||||
class MailwoltRestart extends Command
|
||||
{
|
||||
protected $signature = 'clubird:restart-services|mailwolt:restart-services';
|
||||
protected $signature = 'clubird:restart-services';
|
||||
protected $aliases = ['mailwolt:restart-services'];
|
||||
protected $description = 'Restart or reload MailWolt-related system services';
|
||||
|
||||
public function handle(): int
|
||||
|
|
|
|||
|
|
@ -6,7 +6,8 @@ use Illuminate\Console\Command;
|
|||
|
||||
class MigrateEnvReverb extends Command
|
||||
{
|
||||
protected $signature = 'clubird:migrate-env-reverb|mailwolt:migrate-env-reverb';
|
||||
protected $signature = 'clubird:migrate-env-reverb';
|
||||
protected $aliases = ['mailwolt:migrate-env-reverb'];
|
||||
protected $description = 'Migriert veraltete REVERB_* .env-Werte auf Domain-Basis';
|
||||
|
||||
public function handle(): int
|
||||
|
|
|
|||
|
|
@ -7,11 +7,12 @@ use Illuminate\Console\Command;
|
|||
|
||||
class WizardDomains extends Command
|
||||
{
|
||||
protected $signature = 'clubird:wizard-domains|mailwolt:wizard-domains
|
||||
protected $signature = 'clubird:wizard-domains
|
||||
{--ui= : UI-Domain}
|
||||
{--mail= : Mail-Domain}
|
||||
{--webmail= : Webmail-Domain}
|
||||
{--ssl=1 : SSL automatisch (1/0)}';
|
||||
protected $aliases = ['mailwolt:wizard-domains'];
|
||||
|
||||
protected $description = 'Wizard: Domains einrichten mit Status-Dateien';
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue