Skip to content

Commit c5a131b

Browse files
committed
Resolve test failures
1 parent fc64f42 commit c5a131b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

tasks/main.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,15 @@
66
#
77
- name: Create the /var/local/ncats-webd directory
88
file:
9+
mode: 0755
910
path: /var/local/ncats-webd
1011
state: directory
1112

1213
- name: Download and untar the ncats-webd tarball
13-
unarchive:
14+
# ansible-lint E208 gives an error if we don't specify the mode,
15+
# but we definitely don't want to do that here since it will
16+
# override the permissions on the files in the archive.
17+
unarchive: # noqa 208
1418
src: "https://api.github.com/repos/cisagov/ncats-webd/tarball/develop"
1519
dest: /var/local/ncats-webd
1620
remote_src: yes

0 commit comments

Comments
 (0)