From b6475fea75813bcf07ad5693a4b4c3414325d6da Mon Sep 17 00:00:00 2001 From: boban Date: Mon, 27 Apr 2026 02:46:38 +0200 Subject: [PATCH] =?UTF-8?q?Fix:=20Pipe-Signaturen=20durch=20$aliases=20ers?= =?UTF-8?q?etzen=20=E2=80=94=20clubird:*=20Befehle=20waren=20nicht=20aufru?= =?UTF-8?q?fbar?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Console/Commands/CheckUpdates.php | 3 ++- app/Console/Commands/MailwoltRestart.php | 3 ++- app/Console/Commands/MigrateEnvReverb.php | 3 ++- app/Console/Commands/WizardDomains.php | 3 ++- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/app/Console/Commands/CheckUpdates.php b/app/Console/Commands/CheckUpdates.php index 04e9e85..71e5aa2 100644 --- a/app/Console/Commands/CheckUpdates.php +++ b/app/Console/Commands/CheckUpdates.php @@ -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 diff --git a/app/Console/Commands/MailwoltRestart.php b/app/Console/Commands/MailwoltRestart.php index bb1e2b0..16779b7 100644 --- a/app/Console/Commands/MailwoltRestart.php +++ b/app/Console/Commands/MailwoltRestart.php @@ -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 diff --git a/app/Console/Commands/MigrateEnvReverb.php b/app/Console/Commands/MigrateEnvReverb.php index 29a98f2..51bae92 100644 --- a/app/Console/Commands/MigrateEnvReverb.php +++ b/app/Console/Commands/MigrateEnvReverb.php @@ -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 diff --git a/app/Console/Commands/WizardDomains.php b/app/Console/Commands/WizardDomains.php index 9ad1590..dde201f 100644 --- a/app/Console/Commands/WizardDomains.php +++ b/app/Console/Commands/WizardDomains.php @@ -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';