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