From 0ebde16bc0c979a6a069fd5c089ffca700e1dc41 Mon Sep 17 00:00:00 2001 From: garciadeblas Date: Wed, 30 May 2018 18:36:29 +0200 Subject: [PATCH] Prompt message to let the user know what will be installed Change-Id: If9e0bc0a976c7a7ad035c5b0211efffd94e46b16 Signed-off-by: garciadeblas --- installers/full_install_osm.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/installers/full_install_osm.sh b/installers/full_install_osm.sh index 65bb8b7f..2286aa4b 100755 --- a/installers/full_install_osm.sh +++ b/installers/full_install_osm.sh @@ -719,6 +719,7 @@ function deploy_perfmon() { function install_lightweight() { [ "$USER" == "root" ] && FATAL "You are running the installer as root. The installer is prepared to be executed as a normal user with sudo privileges." + [ -z "$ASSUME_YES" ] && ! ask_user "The installation will configure LXD, install juju, install docker CE and init a docker swarm, as pre-requirements. Do you want to proceed (Y/n)? " y && echo "Cancelled!" && exit 1 echo "Installing lightweight build of OSM" LWTEMPDIR="$(mktemp -d -q --tmpdir "installosmlight.XXXXXX")" trap 'rm -rf "${LWTEMPDIR}"' EXIT -- 2.25.1