Browse Source
[containerd] avoid cleanup of /usr/bin on ostree distributions (#8624)
pull/8623/head
Cristian Calin
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
1 deletions
-
roles/container-engine/containerd/tasks/main.yml
|
|
@ -45,7 +45,9 @@ |
|
|
|
file: |
|
|
|
path: "/usr/bin/{{ item }}" |
|
|
|
state: absent |
|
|
|
when: containerd_bin_dir != "/usr/bin" |
|
|
|
when: |
|
|
|
- containerd_bin_dir != "/usr/bin" |
|
|
|
- not (is_ostree or (ansible_distribution == "Flatcar Container Linux by Kinvolk") or (ansible_distribution == "Flatcar")) |
|
|
|
ignore_errors: true # noqa ignore-errors |
|
|
|
with_items: |
|
|
|
- containerd |
|
|
|