This is a follow on to 507393 since that is already pushed upstream.
Darryl L. Pierce
2009-Jul-07 18:41 UTC
[Ovirt-devel] [PATCH node] Follow on patch for bz#507393.
This patch adds a warning to the NTP changes. Signed-off-by: Darryl L. Pierce <dpierce at redhat.com> --- scripts/ovirt-config-networking | 8 ++++++++ 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/scripts/ovirt-config-networking b/scripts/ovirt-config-networking index 81f017c..89b6afa 100755 --- a/scripts/ovirt-config-networking +++ b/scripts/ovirt-config-networking @@ -251,6 +251,14 @@ function configure_ntp fi if [ -z "$AUTO" ]; then + while true; do + read -ep "By continuing, you will remove any existing NTP settings. Continue (y/n)? " + case $REPLY in + Y|y) break;; + N|n) return;; + esac + done + while true; do read -ep "Enter an NTP server (hit return when finished): " -- 1.6.2.5