File tree 1 file changed +2
-3
lines changed
1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -19,9 +19,6 @@ echo mysql-apt-config mysql-apt-config/select-connector-odbc select connector-
19
19
export DEBIAN_FRONTEND=noninteractive
20
20
sudo -E dpkg -i ${mysql_apt_deb_file}
21
21
22
- # Create User and Database
23
- mysql -u root -e " create user homestead;create database homestead;grant all on homestead.* to homestead@localhost identified by 'secret';"
24
-
25
22
# Update
26
23
sudo apt-get -y update
27
24
@@ -54,6 +51,8 @@ sudo apt-get -y install mysql-server
54
51
mysql-ctl start
55
52
sudo mysql_upgrade -u root --force --upgrade-system-tables
56
53
54
+ # Create User and Database
55
+ mysql -u root -e " create user homestead;create database homestead;grant all on homestead.* to homestead@localhost identified by 'secret';"
57
56
58
57
# Remove File and Folder
59
58
rm hello-world.php
You can’t perform that action at this time.
0 commit comments