/**
  * Index action shows install tool / step installer or redirect to action to enable install tool
  *
  * @return void
  */
 public function indexAction()
 {
     if ($this->enableFileService->checkInstallToolEnableFile()) {
         \TYPO3\CMS\Core\Utility\HttpUtility::redirect('sysext/install/Start/Install.php?install[context]=backend');
     } else {
         $this->forward('showEnableInstallToolButton');
     }
 }