mirror of
https://github.com/void-linux/void-packages.git
synced 2025-09-29 23:25:11 +02:00
5 lines
146 B
Bash
Executable file
5 lines
146 B
Bash
Executable file
#!/bin/sh
|
|
exec 2>&1
|
|
[ ! -d /run/mysqld ] && mkdir -p /run/mysqld
|
|
chown mysql:mysql /run/mysqld
|
|
exec chpst -u mysql:mysql mysqld --user=mysql 2>&1
|