Skip to content

Commit

Permalink
remove apache and mysql
Browse files Browse the repository at this point in the history
  • Loading branch information
patricksamson committed Dec 10, 2017
1 parent ad8b7ed commit 60e9a7b
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions app/Modules/Software/BaseTools.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,11 @@ public function install()
parent::install();

// Remove apache2 and MySQL
`sudo apt-get --purge remove mysql-server mysql-client`;
`sudo apt-get --purge remove apache2`;
`sudo service mysql stop`;
`sudo apt-get -y --purge remove mysql-server mysql-client`;
`sudo apt-get -y --purge remove apache2`;
`sudo apt-get -y --purge autoremove`;
`sudo apt-get autoclean`;
}

public function getVersion(): string
Expand Down

0 comments on commit 60e9a7b

Please # to comment.