Displaying 3 results from an estimated 3 matches for "7d4e363".
Did you mean:
746363
2009 Aug 18
1
[PATCH node] Fixes when the user aborts DNS entry then retries it.
...variable is blanked.
Resolves: rhbz#518021
Signed-off-by: Darryl L. Pierce <dpierce at redhat.com>
---
scripts/ovirt-config-networking | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/scripts/ovirt-config-networking b/scripts/ovirt-config-networking
index e114538..7d4e363 100755
--- a/scripts/ovirt-config-networking
+++ b/scripts/ovirt-config-networking
@@ -343,7 +343,7 @@ function configure_dns
ask_yes_or_no "Is this correct ([Y]es/[N]o/[A]bort)?" true true
case $? in
0) break ;;
-...
2009 Oct 09
1
[PATCH node] validify ipv4/ipv6 static/dhcp choice else loop
...fication. This corrects that behavior and forces a valid option to be picked.
---
scripts/ovirt-config-networking | 106 +++++++++++++++++++++------------------
1 files changed, 58 insertions(+), 48 deletions(-)
diff --git a/scripts/ovirt-config-networking b/scripts/ovirt-config-networking
index 7d4e363..45f7129 100755
--- a/scripts/ovirt-config-networking
+++ b/scripts/ovirt-config-networking
@@ -160,56 +160,66 @@ function configure_interface
return;;
esac
- read -ep "Enable IPv4 support ([S]tatic IP, [D]HCP, [N]o or [A]bort)? "
-...
2009 Nov 11
1
[PATCH] Static IPv4 addresses entered are validated when they're entered.
...tic IP should be optimized
Signed-off-by: Darryl L. Pierce <dpierce at redhat.com>
---
scripts/ovirt-config-networking | 28 +++++++++++++++++++++++++---
1 files changed, 25 insertions(+), 3 deletions(-)
diff --git a/scripts/ovirt-config-networking b/scripts/ovirt-config-networking
index 7d4e363..781553c 100755
--- a/scripts/ovirt-config-networking
+++ b/scripts/ovirt-config-networking
@@ -30,6 +30,28 @@ if ! is_local_storage_configured; then
exit 99
fi
+# $1 - the variable name to set
+# $2 - the input prompt
+function input_ipv4_address {
+ local varname=$1
+ local prompt=$...