mirror of
https://github.com/nextcloud/all-in-one.git
synced 2026-02-04 04:56:52 +00:00
Replace grep -P with grep -E to avoid illegal instruction on non-AVX CPUs in Talk container
This commit is contained in:
parent
dbaef1f154
commit
c6fa96f75c
1 changed files with 1 additions and 1 deletions
|
|
@ -19,7 +19,7 @@ elif [ -z "$INTERNAL_SECRET" ]; then
|
|||
fi
|
||||
|
||||
set -x
|
||||
IPv4_ADDRESS_TALK_RELAY="$(hostname -i | grep -oP '[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+' | head -1)"
|
||||
IPv4_ADDRESS_TALK_RELAY="$(hostname -i | grep -oE '[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+' | head -1)"
|
||||
# shellcheck disable=SC2153
|
||||
IPv4_ADDRESS_TALK="$(dig "$TALK_HOST" IN A +short +search | grep '^[0-9.]\+$' | sort | head -n1)"
|
||||
# shellcheck disable=SC2153
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue