| Patrick Williams | b48b7b4 | 2016-08-17 15:04:38 -0500 | [diff] [blame] | 1 | # |
| 2 | # Simple install MySQL database service file | ||||
| 3 | # It shoulb be done before mysqld.service | ||||
| 4 | |||||
| 5 | [Unit] | ||||
| 6 | Description=Install MySQL Community Server Database | ||||
| 7 | After=network.target | ||||
| 8 | After=syslog.target | ||||
| 9 | Before=mysqld.service | ||||
| 10 | |||||
| 11 | [Install] | ||||
| 12 | WantedBy=multi-user.target | ||||
| 13 | |||||
| 14 | [Service] | ||||
| 15 | Type=oneshot | ||||
| 16 | ExecStart=@BINDIR@/mysql-systemd-start pre | ||||
| 17 | |||||