Fixes #22: Set proper file mode using an octal.

This commit is contained in:
Jeff Geerling
2020-05-16 22:27:08 -05:00
parent 34f525392c
commit 70888c8b74

View File

@@ -11,7 +11,7 @@
dest: /usr/local/bin/k3s dest: /usr/local/bin/k3s
owner: root owner: root
group: root group: root
mode: 755 mode: 0755
when: ansible_facts.architecture == "x86_64" when: ansible_facts.architecture == "x86_64"
- name: Download k3s binary arm64 - name: Download k3s binary arm64
@@ -20,7 +20,7 @@
dest: /usr/local/bin/k3s dest: /usr/local/bin/k3s
owner: root owner: root
group: root group: root
mode: 755 mode: 0755
when: when:
- ansible_facts.architecture is search("arm") - ansible_facts.architecture is search("arm")
- ansible_facts.userspace_bits == "64" - ansible_facts.userspace_bits == "64"
@@ -31,7 +31,7 @@
dest: /usr/local/bin/k3s dest: /usr/local/bin/k3s
owner: root owner: root
group: root group: root
mode: 755 mode: 0755
when: when:
- ansible_facts.architecture is search("arm") - ansible_facts.architecture is search("arm")
- ansible_facts.userspace_bits == "32" - ansible_facts.userspace_bits == "32"