24 lines
341 B
Bash
24 lines
341 B
Bash
#!/bin/bash
|
|
set -eux
|
|
|
|
. /vagrant/provision/nexus-groovy.sh
|
|
|
|
config_fqdn=$(hostname --fqdn)
|
|
|
|
# show the installation summary.
|
|
cat <<EOF
|
|
nexus is running at:
|
|
|
|
https://$config_fqdn
|
|
|
|
use the admin/$admin_password credentials to login.
|
|
|
|
the api browser at:
|
|
|
|
https://$config_fqdn/swagger-ui/
|
|
|
|
the logs are at:
|
|
|
|
/opt/nexus/nexus3/log/
|
|
EOF
|