Remove Ubuntu20 mysql workaround (#5306)

* Remove Ubuntu20 mysql workaround

* Removing unneded init script and related test
This commit is contained in:
Dusko Dobranic
2022-03-31 08:11:08 +02:00
committed by GitHub
parent 137c29497d
commit 52f93c6183
3 changed files with 7 additions and 253 deletions

View File

@@ -36,11 +36,4 @@ Describe "MySQL" {
"sudo mysql -vvv -e 'DROP DATABASE smoke_test' -uroot -proot" | Should -ReturnZeroExitCode
"sudo systemctl stop mysql" | Should -ReturnZeroExitCode
}
It "MySQL sysVinit script works" {
sudo /etc/init.d/mysql start | Out-Null
systemctl is-active mysql | Should -Be "active"
sudo /etc/init.d/mysql stop | Out-Null
systemctl is-active mysql | Should -Be "inactive"
}
}