X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/fd69d825f50dfa1a6618ba77512bc06cf53e8e00..121107e5b11edf4eb9a5a571fa99d7aea9a731eb:/lib/install/example_from_scratch.sh diff --git a/lib/install/example_from_scratch.sh b/lib/install/example_from_scratch.sh index 03d9b7f63b..182e1bfeb5 100644 --- a/lib/install/example_from_scratch.sh +++ b/lib/install/example_from_scratch.sh @@ -1,17 +1,19 @@ #!/bin/bash +# +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 set -e -o pipefail -# Starting with a base debian buster system, like "docker run -it -# debian:10"... +# Starting with a base debian bullseye system, like "docker run -it +# debian:11"... apt update apt upgrade apt install --no-install-recommends build-essential ca-certificates git golang git clone https://git.arvados.org/arvados.git -cd arvados -[[ -e lib/install ]] || git checkout origin/16053-install-deps -cd cmd/arvados-server +cd arvados/cmd/arvados-server go run ./cmd/arvados-server install -type test -pg_isready || pg_ctlcluster 11 main start # only needed if there's no init process (as in docker) +pg_isready || pg_ctlcluster 13 main start # only needed if there's no init process (as in docker) build/run-tests.sh