Displaying 1 result from an estimated 1 matches for "60ecf71".
2009 Jun 30
2
[PATCH node] Make all yes/no prompts consistent. rhbz#508778
...if ask_yes_or_no; then
+ if check_partition_sizes; then
+ perform_partitioning
+ exit 0
+ fi
+ else
+ return
+ fi
done
}
diff --git a/scripts/ovirt-config-uninstall b/scripts/ovirt-config-uninstall
index 59661de..60ecf71 100755
--- a/scripts/ovirt-config-uninstall
+++ b/scripts/ovirt-config-uninstall
@@ -27,9 +27,7 @@ cat <<EOF
EOF
-read -ep "Do you wish to continue and uninstall this node (Y/N)? "
-
-if [ "$REPLY" == "Y" -o "$REPLY" == "y" ]; then
+if as...