mirror of
https://github.com/geerlingguy/ansible-role-apache
synced 2025-01-09 19:30:18 +01:00
Set pidfile even when not running via mysqld_safe
For example, Ubuntu 14.04 /etc/init.d/mysql does not use mysqld_safe and parses the pidfile out of `mysqld --print-defaults` instead.
This commit is contained in:
parent
0c224d8e9d
commit
984473e138
1 changed files with 1 additions and 0 deletions
|
@ -8,6 +8,7 @@ port = {{ mysql_port }}
|
|||
bind-address = {{ mysql_bind_address }}
|
||||
datadir = {{ mysql_datadir }}
|
||||
socket = {{ mysql_socket }}
|
||||
pid-file = {{ mysql_pid_file }}
|
||||
|
||||
# Logging configuration.
|
||||
{% if mysql_log_error == 'syslog' or mysql_log == 'syslog' %}
|
||||
|
|
Loading…
Reference in a new issue