Skip to content

Commit

Permalink
unionfs: remove recurse from unionfs folder creation
Browse files Browse the repository at this point in the history
remote: skip failed service cleanup in an attempt to recover from broken states
  • Loading branch information
saltydk committed Feb 7, 2024
1 parent 3459fd4 commit d5763e5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion roles/remote/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@
loop: "{{ services | dict2items }}"
loop_control:
loop_var: rclone_service
when: (rclone_service_template in rclone_service.key) and (rclone_service.value.status != 'not-found')
when: (rclone_service_template in rclone_service.key) and (rclone_service.value.status != 'not-found') and (rclone_service.value.status != 'failed')

- name: Cleanup Tasks
ansible.builtin.include_tasks: "cleanup.yml"
Expand Down
1 change: 0 additions & 1 deletion roles/unionfs/tasks/subtasks/mount_path.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,3 @@
group: "{{ user.name }}"
mode: "0775"
attributes: '+i'
recurse: true

0 comments on commit d5763e5

Please sign in to comment.