diff --git a/cli/valet.php b/cli/valet.php index ea16c9ac5..ae99e71a2 100755 --- a/cli/valet.php +++ b/cli/valet.php @@ -51,7 +51,6 @@ $app->command('install', function () { Nginx::stop(); PhpFpm::stop(); - Acrylic::stop(); Configuration::install(); @@ -59,7 +58,6 @@ PhpFpm::install(); $tld = Configuration::read()['tld']; - Acrylic::install($tld); Nginx::restart(); @@ -81,8 +79,6 @@ $oldTld = Configuration::read()['tld']; $tld = trim($tld, '.'); - Acrylic::updateTld($tld); - Configuration::updateKey('tld', $tld); Site::resecureForNewTld($oldTld, $tld); @@ -228,8 +224,6 @@ Nginx::restart(); - Acrylic::restart(); - info('Valet services have been started.'); })->descriptions('Start the Valet services'); @@ -241,8 +235,6 @@ Nginx::restart(); - Acrylic::restart(); - info('Valet services have been restarted.'); })->descriptions('Restart the Valet services'); @@ -254,8 +246,6 @@ Nginx::stop(); - Acrylic::stop(); - info('Valet services have been stopped.'); })->descriptions('Stop the Valet services'); @@ -267,8 +257,6 @@ PhpFpm::uninstall(); - Acrylic::uninstall(); - info('Valet has been uninstalled.'); })->descriptions('Uninstall the Valet services');