Skip to content
Snippets Groups Projects
Commit bc287d1e authored by Jörg Sachse's avatar Jörg Sachse
Browse files

fix: do not try to set symlinks to nonexistent validation profiles from checkit-tiff-current

parent cf476f2d
No related branches found
No related tags found
No related merge requests found
Pipeline #4515 failed
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
name: [ name: [
"git", "git",
"inotify-tools", "inotify-tools",
# "checkit-tiff-current", # "checkit-tiff-current", # This is no longer used, because we only want to validate against upcoming. It stays here for documentation purposes.
"checkit-tiff-upcoming", "checkit-tiff-upcoming",
"libzen0v5", "libzen0v5",
"libmediainfo0v5", "libmediainfo0v5",
...@@ -53,21 +53,24 @@ ...@@ -53,21 +53,24 @@
ansible.builtin.file: ansible.builtin.file:
src: "{{ item.s }}" # file to link to src: "{{ item.s }}" # file to link to
dest: "/usr/local/etc/{{ item.d }}" # symlink file path dest: "/usr/local/etc/{{ item.d }}" # symlink file path
state: link state: "{{ item.state | default('link') }}"
loop: loop:
# TIFF 6 # TIFF 6
- s: "/usr/share/checkit_tiff_current/example_configs/cit_tiff6_baseline_SLUB.cfg" - s: "/usr/share/checkit_tiff_current/example_configs/cit_tiff6_baseline_SLUB.cfg"
d: "cit_tiff6_baseline_SLUB_current.cfg" d: "cit_tiff6_baseline_SLUB_current.cfg"
state: "absent"
- s: "/usr/share/checkit_tiff_upcoming/example_configs/cit_tiff6_baseline_SLUB.cfg" - s: "/usr/share/checkit_tiff_upcoming/example_configs/cit_tiff6_baseline_SLUB.cfg"
d: "cit_tiff6_baseline_SLUB_upcoming.cfg" d: "cit_tiff6_baseline_SLUB_upcoming.cfg"
# GeoTIFF 6 # GeoTIFF 6
- s: "/usr/share/checkit_tiff_current/example_configs/cit_tiff6_geotiff_SLUB.cfg" - s: "/usr/share/checkit_tiff_current/example_configs/cit_tiff6_geotiff_SLUB.cfg"
d: "cit_tiff6_geotiff_SLUB_current.cfg" d: "cit_tiff6_geotiff_SLUB_current.cfg"
state: "absent"
- s: "/usr/share/checkit_tiff_upcoming/example_configs/cit_tiff6_geotiff_SLUB.cfg" - s: "/usr/share/checkit_tiff_upcoming/example_configs/cit_tiff6_geotiff_SLUB.cfg"
d: "cit_tiff6_geotiff_SLUB_upcoming.cfg" d: "cit_tiff6_geotiff_SLUB_upcoming.cfg"
# Retrofotos Fotothek # Retrofotos Fotothek
- s: "/usr/share/checkit_tiff_current/example_configs/cit_tiff_retrofotos_SLUB.cfg" - s: "/usr/share/checkit_tiff_current/example_configs/cit_tiff_retrofotos_SLUB.cfg"
d: "cit_tiff_retrofotos_SLUB_current.cfg" d: "cit_tiff_retrofotos_SLUB_current.cfg"
state: "absent"
- s: "/usr/share/checkit_tiff_upcoming/example_configs/cit_tiff_retrofotos_SLUB.cfg" - s: "/usr/share/checkit_tiff_upcoming/example_configs/cit_tiff_retrofotos_SLUB.cfg"
d: "cit_tiff_retrofotos_SLUB_upcoming.cfg" d: "cit_tiff_retrofotos_SLUB_upcoming.cfg"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment