We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc64f42 commit c5a131bCopy full SHA for c5a131b
tasks/main.yml
@@ -6,11 +6,15 @@
6
#
7
- name: Create the /var/local/ncats-webd directory
8
file:
9
+ mode: 0755
10
path: /var/local/ncats-webd
11
state: directory
12
13
- name: Download and untar the ncats-webd tarball
- 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
18
src: "https://api.github.com/repos/cisagov/ncats-webd/tarball/develop"
19
dest: /var/local/ncats-webd
20
remote_src: yes
0 commit comments