Displaying 4 results from an estimated 4 matches for "0d47dc8".
Did you mean:
0547fdc8
2010 Jan 14
0
[PATCH] Presents duplicate DNS and NTP server entries.
...;${NTPSERVERS}:${REPLY}"
+ fi
else
printf "${REPLY} is an invalid address.\n"
fi
- done
+ done
fi
fi
}
diff --git a/scripts/ovirt-functions b/scripts/ovirt-functions
index 6435387..0d47dc8 100644
--- a/scripts/ovirt-functions
+++ b/scripts/ovirt-functions
@@ -598,6 +598,13 @@ add_if_not_exist() {
|| echo "$string" >> "$file"
}
+# $1 - the string to be trimmed
+trim_whitespace () {
+ local text=${1}
+
+ printf "$text" | awk '{g...
2010 Jan 14
1
Ignore that last patch...
The first line of the comment had a typo in it.
2010 Jan 18
1
Refactored patch...
This patch supercedes the previous and includes fixes based on feedback
from apevec. Duplicate checks now check the whole address, so substrings
won't cause false positives.
2010 Jan 18
1
Fixed a karg issue...
I missed one situation in the last patch. It wasn't properly handling
the karg for NTP. This patch fixes that.