Skip to content
This repository was archived by the owner on Oct 15, 2020. It is now read-only.

Commit 36f5817

Browse files
committed
Fix mode of executable file (ie, make sure that's octal)
1 parent fa86a7e commit 36f5817

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tasks/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
copy:
3434
dest: /usr/local/bin/build_deploy.py
3535
src: build_deploy.py
36-
mode: 755
36+
mode: 0755
3737
owner: root
3838
group: root
3939

@@ -50,7 +50,7 @@
5050
- name: Fix directory permission for NRPE
5151
file:
5252
path: "/srv/builder"
53-
mode: 755
53+
mode: 0755
5454
state: directory
5555

5656
- name: Clone git repo {{ git_url }}

0 commit comments

Comments
 (0)