summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--nixos/modules/services/databases/mysql.nix8
1 files changed, 0 insertions, 8 deletions
diff --git a/nixos/modules/services/databases/mysql.nix b/nixos/modules/services/databases/mysql.nix
index 128bb0862175..788a4bd43c68 100644
--- a/nixos/modules/services/databases/mysql.nix
+++ b/nixos/modules/services/databases/mysql.nix
@@ -379,17 +379,9 @@ in
in ''
${optionalString (!isMariaDB) ''
# Wait until the MySQL server is available for use
- count=0
while [ ! -e /run/mysqld/mysqld.sock ]
do
- if [ $count -eq 30 ]
- then
- echo "Tried 30 times, giving up..."
- exit 1
- fi
-
echo "MySQL daemon not yet started. Waiting for 1 second..."
- count=$((count++))
sleep 1
done
''}