We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f03c5dc commit 4699ae6Copy full SHA for 4699ae6
ansible/examples/builder.yml
@@ -786,13 +786,15 @@
786
when: ansible_os_family == "Suse"
787
788
# Do NOT try to chown the podman storage dirs. This breaks all subsequent builds.
789
+ # follow: false avoids following our silly qa/ dir symlinks
790
- name: Ensure the build dir has the right owner permissions
791
become: true
792
ansible.builtin.file:
793
path: "/home/{{ jenkins_user }}/build"
794
owner: "{{ jenkins_user }}"
795
group: "{{ jenkins_user }}"
796
recurse: true
797
+ follow: false
798
tags: chown
799
800
- name: Set system locale (systemd)
0 commit comments