Displaying 4 results from an estimated 4 matches for "d29bd12".
2009 Jun 25
1
[PATCH node] Rerunning network config resets all network config. bz#507393
...ed
are applied.
Signed-off-by: Darryl L. Pierce <dpierce at redhat.com>
---
scripts/ovirt-config-networking | 46 +++++++++++++++++++++++++-------------
1 files changed, 30 insertions(+), 16 deletions(-)
diff --git a/scripts/ovirt-config-networking b/scripts/ovirt-config-networking
index d29bd12..81f017c 100755
--- a/scripts/ovirt-config-networking
+++ b/scripts/ovirt-config-networking
@@ -16,8 +16,10 @@ WORKDIR=$(mktemp -d) || exit 1
trap '__st=$?; rm -rf "$WORKDIR"; stop_log; exit $__st' 0
trap 'exit $?' 1 2 13 15
-CONFIG_FILE_ROOT="/files/etc/sysconfig...
2009 Jun 29
2
[PATCH node] Change DNS setup to match NTP. rhbz#508677
...nd entry was provided.
Signed-off-by: Darryl L. Pierce <dpierce at redhat.com>
---
scripts/ovirt-config-networking | 31 +++++++++++--------------------
1 files changed, 11 insertions(+), 20 deletions(-)
diff --git a/scripts/ovirt-config-networking b/scripts/ovirt-config-networking
index d29bd12..901e48d 100755
--- a/scripts/ovirt-config-networking
+++ b/scripts/ovirt-config-networking
@@ -206,26 +206,18 @@ function configure_dns
local IF_CONFIG=
if [ -z "$AUTO" ]; then
- while true; do
+ for dns in first second; do
printf "\n"
-...
2009 Jul 07
1
Obsoletes previous patch
This patch obsoletes the previously submitted patch. It adds a
warning message to the user when they select to change the NTP settings.
2009 Jun 30
2
[PATCH node] Make all yes/no prompts consistent. rhbz#508778
...;;
+ 2)
+ printf "\nAborting logging configuration.\n"
+ return
+ ;;
+ esac
done
done
}
diff --git a/scripts/ovirt-config-networking b/scripts/ovirt-config-networking
index d29bd12..713cabc 100755
--- a/scripts/ovirt-config-networking
+++ b/scripts/ovirt-config-networking
@@ -40,10 +40,12 @@ function configure_interface
if [[ -n "${CONFIGURED_NIC}" ]]; then
printf "This will delete the current configuration for ${CONFIGURED_NIC}.\n"
-...