Fix script bug
diff --git a/xos/synchronizers/vpn/steps/sync_vpntenant.py b/xos/synchronizers/vpn/steps/sync_vpntenant.py
index 7b455db..2da02d8 100644
--- a/xos/synchronizers/vpn/steps/sync_vpntenant.py
+++ b/xos/synchronizers/vpn/steps/sync_vpntenant.py
@@ -55,7 +55,7 @@
         script.write("\" > login.up\n")
         script.write("printf \"")
         for line in tenant.ca_crt:
-            script.write(line + r"\n")
+            script.write(line.rstrip() + r"\n")
         script.write("\" > ca.crt\n")
         # make sure openvpn is installed
         script.write("apt-get update\n")