From 41a8e80b1951dee9369c31d9227e3956988e46f0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 4 Jan 2024 09:29:44 +0000 Subject: [PATCH] [Automated] Merge 5.x into master (#167) * fix(docker-monolithic): add stop_grace_period (#162) * fix(linux): update mysql apt repo to 0.8.29 (#166) --------- Co-authored-by: Kieran --- templates/linux/setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/linux/setup.sh b/templates/linux/setup.sh index e5dccec..ba0dc41 100644 --- a/templates/linux/setup.sh +++ b/templates/linux/setup.sh @@ -482,7 +482,7 @@ install_mysql() { debconf-set-selections <<< "mysql-server mysql-server/root_password password ${root_password}" debconf-set-selections <<< "mysql-server mysql-server/root_password_again password ${root_password}" - wget -O mysql-apt-config.deb https://dev.mysql.com/get/mysql-apt-config_0.8.26-1_all.deb + wget -O mysql-apt-config.deb https://dev.mysql.com/get/mysql-apt-config_0.8.29-1_all.deb dpkg -i mysql-apt-config.deb && apt-get update rm mysql-apt-config.deb fi