[CORD-3090] Remove Filebeat logging

Change-Id: I95e69ffd77cd8bbbdca2398f44eac336f5ae92f3
diff --git a/xos/synchronizer/openstack-synchronizer.py b/xos/synchronizer/openstack-synchronizer.py
index 4d33bf0..57ed48b 100644
--- a/xos/synchronizer/openstack-synchronizer.py
+++ b/xos/synchronizer/openstack-synchronizer.py
@@ -1,3 +1,4 @@
+#!/usr/bin/env python
 
 # Copyright 2017-present Open Networking Foundation
 #
@@ -13,8 +14,6 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-
-#!/usr/bin/env python
 import os
 import argparse
 import sys
@@ -59,8 +58,11 @@
     if (wait):
         time.sleep(60) # Safety factor, seeing that we stumbled waiting for the data model to come up.
     backend = Backend()
-    backend.run()    
+    backend.run()
 
 if __name__ == '__main__':
-    
-    main() 
+
+    # Update the CA certificates
+    os.system("update-ca-certificates")
+
+    main()