Skip to content

Commit

Permalink
wait after mysql is alive
Browse files Browse the repository at this point in the history
  • Loading branch information
stephdl committed Sep 26, 2023
1 parent 883794c commit b649fb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion imageroot/systemd/user/mariadb-app.service
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ ExecStart=/usr/bin/podman run --conmon-pidfile %t/mariadb-app.pid \
${MARIADB_IMAGE} \
--character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci
ExecStartPost=/usr/bin/podman exec mariadb-app /bin/bash -c 'printf "[client] \npassword=Nethesis,1234" > /root/.my.cnf'
ExecStartPost=/usr/bin/podman exec mariadb-app /bin/bash -c "while ! mysql -h localhost -P 3306 -u roundcubemail --password=roundcubemail roundcubemail -e 'select * from roundcubemail.cache roundcubemail;'; do sleep 1; done"
ExecStartPost=/usr/bin/podman exec mariadb-app /bin/bash -c "while ! mysqladmin ping -h localhost -P 3306 -u roundcubemail --password=roundcubemail; do sleep 1; done"
ExecStop=/usr/bin/podman stop --ignore --cidfile %t/mariadb-app.ctr-id -t 10
ExecStopPost=/usr/bin/podman rm --ignore -f --cidfile %t/mariadb-app.ctr-id
ExecReload=/usr/bin/podman kill -s HUP mariadb-app
Expand Down

0 comments on commit b649fb9

Please sign in to comment.