Commit 70888c8b authored by Jeff Geerling's avatar Jeff Geerling
Browse files

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

parent 34f52539
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -11,7 +11,7 @@
    dest: /usr/local/bin/k3s
    owner: root
    group: root
    mode: 755
    mode: 0755
  when: ansible_facts.architecture == "x86_64"

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