1
0
mirror of https://github.com/pooneyy/1Panel-Appstore.git synced 2026-03-22 02:29:40 +08:00
pooneyy 9a1baf812c
feat(mysql): update mysql versions to latest releases
- upgrade mysql 8.0.43 to 8.0.44
- upgrade mysql 8.4.6 to 8.4.7
2025-11-02 01:42:23 +08:00

9 lines
213 B
Bash

#!/bin/bash
CONFIG_FILE="./conf/my.cnf"
if grep -q "skip-host-cache" "$CONFIG_FILE"; then
sed -i '/skip-host-cache/d' "$CONFIG_FILE"
else
echo "'skip-host-cache' does not exist in the configuration file."
fi