mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-27 12:51:26 -07:00
Enclose command in quotes
This commit is contained in:
parent
c5c32f7751
commit
163a43ba80
1 changed files with 3 additions and 3 deletions
6
.github/workflows/ansible-test-plugins.yml
vendored
6
.github/workflows/ansible-test-plugins.yml
vendored
|
@ -92,7 +92,7 @@ jobs:
|
|||
# We write our own health-cmd because the mariadb container does not
|
||||
# provide a healthcheck
|
||||
options: >-
|
||||
--health-cmd mysqladmin ping -P 3306 -pmsandbox |grep alive || exit 1
|
||||
--health-cmd "mysqladmin ping -P 3306 -pmsandbox |grep alive || exit 1"
|
||||
--health-start-period 10s
|
||||
--health-interval 10s
|
||||
--health-timeout 5s
|
||||
|
@ -108,7 +108,7 @@ jobs:
|
|||
volumes:
|
||||
- ${{ github.workspace }}/tests/integration/setup_mysql/replica1/:/etc/mysql/conf.d/
|
||||
options: >-
|
||||
--health-cmd mysqladmin ping -P 3306 -pmsandbox |grep alive || exit 1
|
||||
--health-cmd "mysqladmin ping -P 3306 -pmsandbox |grep alive || exit 1"
|
||||
--health-start-period 10s
|
||||
--health-interval 10s
|
||||
--health-timeout 5s
|
||||
|
@ -124,7 +124,7 @@ jobs:
|
|||
volumes:
|
||||
- ${{ github.workspace }}/tests/integration/setup_mysql/replica2/:/etc/mysql/conf.d/
|
||||
options: >-
|
||||
--health-cmd mysqladmin ping -P 3306 -pmsandbox |grep alive || exit 1
|
||||
--health-cmd "mysqladmin ping -P 3306 -pmsandbox |grep alive || exit 1"
|
||||
--health-start-period 10s
|
||||
--health-interval 10s
|
||||
--health-timeout 5s
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue