Ignore mysql service when not running at the beginning

This commit is contained in:
Maxi Redigonda 2022-05-31 13:15:46 -03:00
parent bbe088be5c
commit 23b65406a9

View File

@ -5,7 +5,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: sudo systemctl status mysql.service
- run: sudo systemctl status mysql.service || true
- run: sudo /lib/systemd/systemd-sysv-install enable mysql
- run: sudo systemctl enable mysql.service
- run: sudo systemctl start mysql.service