mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-05-02 20:08:11 +02:00
8 lines
241 B
Text
8 lines
241 B
Text
|
#!/bin/sh
|
||
|
|
||
|
# do not disable networking if we have a pre-existing, old config
|
||
|
if [ -e /etc/mysql/my.cnf ] && [ -e /etc/my.cnf.d/mariadb-server.cnf ]; then
|
||
|
sed -i -e 's/^skip-networking/#skip-networking/' /etc/my.cnf.d/mariadb-server.cnf
|
||
|
fi
|
||
|
|