diff options
author | Remi Collet <fedora@famillecollet.com> | 2011-12-10 17:27:43 +0100 |
---|---|---|
committer | Remi Collet <fedora@famillecollet.com> | 2011-12-10 17:27:43 +0100 |
commit | dba1c6658225ebe24d598fa5f58a874d36264996 (patch) | |
tree | 9716c8b1e35acb90d560fb6f249fede9af080a01 /mysqld.service | |
parent | 9a6c7ce59cba27e755c9b3120ac05cbfc95696d2 (diff) |
mysql 5.5.18, sync with rawhide
Diffstat (limited to 'mysqld.service')
-rw-r--r-- | mysqld.service | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/mysqld.service b/mysqld.service new file mode 100644 index 0000000..b3bc486 --- /dev/null +++ b/mysqld.service @@ -0,0 +1,24 @@ +[Unit] +Description=MySQL database server +After=syslog.target +After=network.target + +[Service] +Type=forking +User=mysql +Group=mysql + +ExecStartPre=/usr/libexec/mysqld-prepare-db-dir +# Note: we set --basedir to prevent probes that might trigger SELinux alarms, +# per bug #547485 +ExecStart=/usr/bin/mysqld_safe --nowatch --basedir=/usr +ExecStartPost=/usr/libexec/mysqld-wait-ready $MAINPID + +# Give a reasonable amount of time for the server to start up/shut down +TimeoutSec=300 + +# We rely on systemd, not mysqld_safe, to restart mysqld if it dies +Restart=always + +[Install] +WantedBy=multi-user.target |