mirror of
https://git.icinga.com/packaging/rpm-icingaweb2.git
synced 2025-07-31 01:44:06 +02:00
15 lines
284 B
Bash
Executable File
15 lines
284 B
Bash
Executable File
#!/bin/bash
|
|
# this script runs in the rpm_test environment
|
|
|
|
SCRIPT_HOME="$(dirname "$(readlink -f "$0")")"
|
|
|
|
if ! $SCRIPT_HOME/prepare_test.sh; then
|
|
exit 1
|
|
fi
|
|
|
|
IP_ADDRESS="$(hostname -I | cut -d' ' -f1)"
|
|
echo "Icinga Web is now available at http://$IP_ADDRESS/icingaweb2"
|
|
echo
|
|
|
|
bash
|