diff --git a/tasks/main.yml b/tasks/main.yml
index b11929ce68b31ff913b88156f0163c5a11cbb3ce..6be22f9c06171b6cf3055ecf4f4efeb6ab39c0b1 100644
--- a/tasks/main.yml
+++ b/tasks/main.yml
@@ -15,7 +15,7 @@
       dest: /etc/hosts
       owner: root
       group: root
-      mode: 644
+      mode: 0644
 
   - name: Copy SSH Config For Server-To-Server Communication For Admins
     template:
@@ -23,7 +23,7 @@
       dest: /home/{{ item }}/.ssh/config
       owner: '{{ item }}'
       group: root
-      mode: 644
+      mode: 0644
     with_flattened:
       - {{ admins|default([]) }}
       - {{ jailusers|default([]) }}