Displaying 2 results from an estimated 2 matches for "729,22".
Did you mean:
129,22
2002 Apr 03
2
cross compilation?
...[AC_MSG_RESULT(yes)],
[
@@ -625,6 +613,10 @@
AC_MSG_RESULT(no)
AC_DEFINE(BROKEN_SNPRINTF)
AC_MSG_WARN([****** Your snprintf() function is broken, complain to your
vendor])
+
],
+
[
+
AC_MSG_RESULT(assuming no)
+
AC_DEFINE(BROKEN_SNPRINTF)
]
)
fi
@@ -729,22 +721,21 @@
# Basic test to check for compatible version and correct linking
# *does not* test for RSA - that comes later.
-
AC_TRY_RUN(
+
AC_TRY_LINK(
[
-#include <string.h>
-#include <openssl/rand.h>
-int main(void)
-{
-
char a[2048];
-
memset(a, 0, sizeof(a));...
2010 Feb 11
3
[PATCH node] remove ipv4 validation for ntp and rely on actual ntp verification
...t 2> /dev/null
+ if [ $NTPSERVERS ]; then
+ log "Testing NTP Configuration"
+ test_ntp_configuration
+ fi
fi
diff --git a/scripts/ovirt-functions b/scripts/ovirt-functions
index 6435387..48d0e39 100644
--- a/scripts/ovirt-functions
+++ b/scripts/ovirt-functions
@@ -729,6 +729,22 @@ is_valid_ipv4 () {
return $result
}
+test_ntp_configuration () {
+ # stop ntpd service for testing
+ service ntpd stop > /dev/null 2>&1
+ SERVERS=$(echo $NTPSERVERS | awk 'BEGIN{FS=":"}{for (i=1; i<=NF; i++) print $i}')
+ for serve...