mirror of
https://github.com/getsentry/self-hosted.git
synced 2026-02-01 16:32:44 +00:00
15 lines
617 B
Bash
Executable File
15 lines
617 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -ex
|
|
|
|
source "$(dirname $0)/../install/_lib.sh"
|
|
|
|
source ../install/dc-detect-version.sh
|
|
|
|
# Negated version of ensure-customizations-work.sh, make changes in sync
|
|
echo "${_group}Ensure customizations not present"
|
|
! $dcr --no-deps web bash -c "if [ ! -e /created-by-enhance-image ]; then exit 1; fi"
|
|
! $dcr --no-deps --entrypoint=/etc/sentry/entrypoint.sh sentry-cleanup bash -c "if [ ! -e /created-by-enhance-image ]; then exit 1; fi"
|
|
! $dcr --no-deps web python -c "import ldap"
|
|
! $dcr --no-deps --entrypoint=/etc/sentry/entrypoint.sh sentry-cleanup python -c "import ldap"
|
|
echo "${_endgroup}"
|