diff --git a/openvpn/tasks/openvpn.yml b/openvpn/tasks/openvpn.yml
index 1e76ca94..600f039a 100644
--- a/openvpn/tasks/openvpn.yml
+++ b/openvpn/tasks/openvpn.yml
@@ -88,17 +88,19 @@
   when: openvpn_is_master_host or not openvpn_ha
   tags: [ 'openvpn', 'openvpn_conf' ]
 
-- block:
-    - name: Get the dh file from the master host
-      synchronize: src={{ openvpn_conf_dir }}/dh2048.pem dest=rsync://{{ ansible_fqdn }}/{{ openvpn_conf_dir }}/dh2048.pem mode=0440 owner=root group=root
-      delegate_to: '{{ openvpn_master_host }}'
+# Does not work right now. The error is
+# fatal: [gw2.d4science.org -> gw1.d4science.org]: FAILED! => {"changed": false, "failed": true, "msg": "Boolean root not in either boolean list"}
+# - block:
+#     - name: Get the dh file from the master host
+#       synchronize: src={{ openvpn_conf_dir }}/dh2048.pem dest=rsync://root@{{ ansible_fqdn }}/{{ openvpn_conf_dir }}/dh2048.pem
+#       delegate_to: '{{ openvpn_master_host }}'
       
-    - name: Get the ta key from the master host
-      synchronize: src={{ openvpn_conf_dir }}/ta.key dest=rsync://{{ ansible_fqdn }}/{{ openvpn_conf_dir }}/ta.key mode=0440 owner=root group=root
-      delegate_to: '{{ openvpn_master_host }}'
+#     - name: Get the ta key from the master host
+#       synchronize: src={{ openvpn_conf_dir }}/ta.key dest=rsync://root@{{ ansible_fqdn }}/{{ openvpn_conf_dir }}/ta.key
+#       delegate_to: '{{ openvpn_master_host }}'
 
-  when: openvpn_ha and not openvpn_is_master_host
-  tags: [ 'openvpn', 'openvpn_conf', 'openvpn_shared_secrets' ]
+#   when: openvpn_ha and not openvpn_is_master_host
+#   tags: [ 'openvpn', 'openvpn_conf', 'openvpn_shared_secrets' ]
 
 
 - block: