~ubuntu-branches/ubuntu/raring/eucalyptus/raring

« back to all changes in this revision

Viewing changes to debian/patches/29-euca_conf-sslv3.patch

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2011-09-21 09:57:58 UTC
  • Revision ID: package-import@ubuntu.com-20110921095758-v3q43gifp4lxlh1w
Tags: 2.0.1+bzr1256-0ubuntu8
* Fix compatibility issues with SSLv3 (LP: #851611):
  - d/patches/29-euca_conf-sslv3.patch: Use --secure-protocol=SSLv3
    with wget when communicating with CLC.
  - d/eucalyptus-cloud.upstart: Use --secure-protocol=SSLv3 with wget
    when checking for CLC startup complete.
* d/patches/30-clock_drift.patch: Resolve issue with rampart blocking 
  communication between CC and NC when time is fractionally in the
  future (LP: #854946):

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Description: Force wget to use SSLv3 protocol when talking to CLC
 
2
 otherwise SSL comms failures happen.
 
3
Origin: https://build.opensuse.org/package/view_file?file=eucalyptus-force-sslv3.patch&package=eucalyptus&project=Virtualization%3ACloud%3AEucalyptus&srcmd5=603fc985140105bd4ed7a079a4dc7258
 
4
Forwarded: not-needed
 
5
 
 
6
Index: eucalyptus/tools/euca_conf.in
 
7
===================================================================
 
8
--- eucalyptus.orig/tools/euca_conf.in  2011-09-20 17:03:52.995305737 +0100
 
9
+++ eucalyptus/tools/euca_conf.in       2011-09-20 17:05:46.935553670 +0100
 
10
@@ -1096,7 +1096,7 @@
 
11
            done
 
12
        fi
 
13
        
 
14
-       CMD="$WGET -T 10 -t 1 -O - -q --no-check-certificate https://127.0.0.1:8443/register | grep CloudVersion >/dev/null"
 
15
+       CMD="$WGET -T 10 -t 1 -O - -q --no-check-certificate --secure-protocol=SSLv3 https://127.0.0.1:8443/register | grep CloudVersion >/dev/null"
 
16
     elif [ "$SERVICE" = "CC" ]; then
 
17
        CMD="$WGET -T 10 -t 1 -O - -q http://127.0.0.1:8774/axis2/services/ | grep EucalyptusCC >/dev/null"
 
18
     fi