Skip to content

Commit 430612f

Browse files
committed
Updated snapshots.
1 parent 64fc3e3 commit 430612f

39 files changed

Lines changed: 91 additions & 86 deletions

File tree

.vortex/installer/tests/Fixtures/handler_process/_baseline/.ahoy.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,9 @@ commands:
109109

110110
login:
111111
usage: Unblock user 1 and generate a one time login link.
112-
cmd: ahoy cli ./vendor/drevops/vortex-tooling/src/login
112+
cmd: |
113+
ahoy require-tooling
114+
ahoy cli ./vendor/drevops/vortex-tooling/src/login
113115
114116
download-db:
115117
usage: Download database. Run with "--fresh" option to force fresh database backup.
@@ -131,6 +133,7 @@ commands:
131133
usage: Provision a site from the database dump or profile.
132134
cmd: |
133135
ahoy confirm "Running this command will remove your current database. Are you sure?" || exit 0
136+
ahoy require-tooling
134137
[ -n "${VORTEX_DB_IMAGE}" ] && AHOY_CONFIRM_RESPONSE=y ahoy reload-db
135138
ahoy cli ./vendor/drevops/vortex-tooling/src/provision
136139
[ "${VORTEX_SHOW_LOGIN:-1}" = "1" ] && ahoy login || true
@@ -143,7 +146,9 @@ commands:
143146
144147
import-db:
145148
usage: Import database from dump.
146-
cmd: VORTEX_PROVISION_POST_OPERATIONS_SKIP=1 VORTEX_PROVISION_DB="$@" ahoy cli ./vendor/drevops/vortex-tooling/src/provision
149+
cmd: |
150+
ahoy require-tooling
151+
VORTEX_PROVISION_POST_OPERATIONS_SKIP=1 VORTEX_PROVISION_DB="$@" ahoy cli ./vendor/drevops/vortex-tooling/src/provision
147152
148153
pull-db:
149154
usage: Download database image with the latest nightly dump. Run "ahoy reload-db" to reload DB in the running stack.
@@ -276,7 +281,7 @@ commands:
276281
usage: Update project from the Vortex template repository.
277282
cmd: |
278283
ahoy require-tooling
279-
./vendor/drevops/vortex-tooling/src/update-vortex $@
284+
./vendor/drevops/vortex-tooling/src/update-vortex "$@"
280285
281286
local:
282287
usage: Custom local commands. See `ahoy local help`.

.vortex/installer/tests/Fixtures/handler_process/migration_download_source_acquia/.ahoy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
# ----------------------------------------------------------------------------
2222
# Container commands.
2323
# ----------------------------------------------------------------------------
24-
@@ -119,6 +128,14 @@
24+
@@ -121,6 +130,14 @@
2525
case " $* " in *" --fresh "*) export VORTEX_DOWNLOAD_DB_FRESH=1;; esac
2626
./vendor/drevops/vortex-tooling/src/download-db
2727

@@ -36,7 +36,7 @@
3636
reload-db:
3737
usage: Reload the database container using local database image.
3838
cmd: |
39-
@@ -126,6 +143,13 @@
39+
@@ -128,6 +145,13 @@
4040
docker compose rm --force --stop --volumes database
4141
docker compose build database
4242
ahoy up

.vortex/installer/tests/Fixtures/handler_process/migration_download_source_container_registry/.ahoy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
# ----------------------------------------------------------------------------
2222
# Container commands.
2323
# ----------------------------------------------------------------------------
24-
@@ -119,6 +128,14 @@
24+
@@ -121,6 +130,14 @@
2525
case " $* " in *" --fresh "*) export VORTEX_DOWNLOAD_DB_FRESH=1;; esac
2626
./vendor/drevops/vortex-tooling/src/download-db
2727

@@ -36,7 +36,7 @@
3636
reload-db:
3737
usage: Reload the database container using local database image.
3838
cmd: |
39-
@@ -126,6 +143,13 @@
39+
@@ -128,6 +145,13 @@
4040
docker compose rm --force --stop --volumes database
4141
docker compose build database
4242
ahoy up

.vortex/installer/tests/Fixtures/handler_process/migration_download_source_ftp/.ahoy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
# ----------------------------------------------------------------------------
2222
# Container commands.
2323
# ----------------------------------------------------------------------------
24-
@@ -119,6 +128,14 @@
24+
@@ -121,6 +130,14 @@
2525
case " $* " in *" --fresh "*) export VORTEX_DOWNLOAD_DB_FRESH=1;; esac
2626
./vendor/drevops/vortex-tooling/src/download-db
2727

@@ -36,7 +36,7 @@
3636
reload-db:
3737
usage: Reload the database container using local database image.
3838
cmd: |
39-
@@ -126,6 +143,13 @@
39+
@@ -128,6 +145,13 @@
4040
docker compose rm --force --stop --volumes database
4141
docker compose build database
4242
ahoy up

.vortex/installer/tests/Fixtures/handler_process/migration_download_source_lagoon/.ahoy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
# ----------------------------------------------------------------------------
2222
# Container commands.
2323
# ----------------------------------------------------------------------------
24-
@@ -119,6 +128,14 @@
24+
@@ -121,6 +130,14 @@
2525
case " $* " in *" --fresh "*) export VORTEX_DOWNLOAD_DB_FRESH=1;; esac
2626
./vendor/drevops/vortex-tooling/src/download-db
2727

@@ -36,7 +36,7 @@
3636
reload-db:
3737
usage: Reload the database container using local database image.
3838
cmd: |
39-
@@ -126,6 +143,13 @@
39+
@@ -128,6 +145,13 @@
4040
docker compose rm --force --stop --volumes database
4141
docker compose build database
4242
ahoy up

.vortex/installer/tests/Fixtures/handler_process/migration_download_source_s3/.ahoy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
# ----------------------------------------------------------------------------
2222
# Container commands.
2323
# ----------------------------------------------------------------------------
24-
@@ -119,6 +128,14 @@
24+
@@ -121,6 +130,14 @@
2525
case " $* " in *" --fresh "*) export VORTEX_DOWNLOAD_DB_FRESH=1;; esac
2626
./vendor/drevops/vortex-tooling/src/download-db
2727

@@ -36,7 +36,7 @@
3636
reload-db:
3737
usage: Reload the database container using local database image.
3838
cmd: |
39-
@@ -126,6 +143,13 @@
39+
@@ -128,6 +145,13 @@
4040
docker compose rm --force --stop --volumes database
4141
docker compose build database
4242
ahoy up

.vortex/installer/tests/Fixtures/handler_process/migration_download_source_url/.ahoy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
# ----------------------------------------------------------------------------
2222
# Container commands.
2323
# ----------------------------------------------------------------------------
24-
@@ -119,6 +128,14 @@
24+
@@ -121,6 +130,14 @@
2525
case " $* " in *" --fresh "*) export VORTEX_DOWNLOAD_DB_FRESH=1;; esac
2626
./vendor/drevops/vortex-tooling/src/download-db
2727

@@ -36,7 +36,7 @@
3636
reload-db:
3737
usage: Reload the database container using local database image.
3838
cmd: |
39-
@@ -126,6 +143,13 @@
39+
@@ -128,6 +145,13 @@
4040
docker compose rm --force --stop --volumes database
4141
docker compose build database
4242
ahoy up

.vortex/installer/tests/Fixtures/handler_process/migration_enabled/.ahoy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
# ----------------------------------------------------------------------------
2222
# Container commands.
2323
# ----------------------------------------------------------------------------
24-
@@ -119,6 +128,14 @@
24+
@@ -121,6 +130,14 @@
2525
case " $* " in *" --fresh "*) export VORTEX_DOWNLOAD_DB_FRESH=1;; esac
2626
./vendor/drevops/vortex-tooling/src/download-db
2727

@@ -36,7 +36,7 @@
3636
reload-db:
3737
usage: Reload the database container using local database image.
3838
cmd: |
39-
@@ -126,6 +143,13 @@
39+
@@ -128,6 +145,13 @@
4040
docker compose rm --force --stop --volumes database
4141
docker compose build database
4242
ahoy up

.vortex/installer/tests/Fixtures/handler_process/migration_enabled_circleci/.ahoy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
# ----------------------------------------------------------------------------
2222
# Container commands.
2323
# ----------------------------------------------------------------------------
24-
@@ -119,6 +128,14 @@
24+
@@ -121,6 +130,14 @@
2525
case " $* " in *" --fresh "*) export VORTEX_DOWNLOAD_DB_FRESH=1;; esac
2626
./vendor/drevops/vortex-tooling/src/download-db
2727

@@ -36,7 +36,7 @@
3636
reload-db:
3737
usage: Reload the database container using local database image.
3838
cmd: |
39-
@@ -126,6 +143,13 @@
39+
@@ -128,6 +145,13 @@
4040
docker compose rm --force --stop --volumes database
4141
docker compose build database
4242
ahoy up

.vortex/installer/tests/Fixtures/handler_process/migration_enabled_lagoon/.ahoy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
# ----------------------------------------------------------------------------
2222
# Container commands.
2323
# ----------------------------------------------------------------------------
24-
@@ -119,6 +128,14 @@
24+
@@ -121,6 +130,14 @@
2525
case " $* " in *" --fresh "*) export VORTEX_DOWNLOAD_DB_FRESH=1;; esac
2626
./vendor/drevops/vortex-tooling/src/download-db
2727

@@ -36,7 +36,7 @@
3636
reload-db:
3737
usage: Reload the database container using local database image.
3838
cmd: |
39-
@@ -126,6 +143,13 @@
39+
@@ -128,6 +145,13 @@
4040
docker compose rm --force --stop --volumes database
4141
docker compose build database
4242
ahoy up

0 commit comments

Comments
 (0)