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

fix: checkout significantproperties repo from Git, even if there's an owner...

fix: checkout significantproperties repo from Git, even if there's an owner mismatch (which, in turn, is required by SubApp)
parent c9164ac0
No related branches found
No related tags found
1 merge request!2merge feat_ND-2363_ND-2323 into master
Pipeline #3453 passed
...@@ -115,6 +115,12 @@ ...@@ -115,6 +115,12 @@
ansible.builtin.apt: ansible.builtin.apt:
name: "git" name: "git"
state: latest state: latest
# "msg": "Failed to set a new url https://git.slub-dresden.de/digital-preservation/significantproperties.git for origin: fatal: detected dubious ownership in repository at '/usr/local/share/significantproperties'\nTo add an exception for this directory, call:\n\n\tgit config --global --add safe.directory /usr/local/share/significantproperties\n"
- name: git konfigurieren (muss gesetzt sein, sonst wirft der nächste Task den Fehler 'detected dubious ownership in repository')
community.general.git_config:
name: "safe.directory"
scope: "global"
value: "/usr/local/share/significantproperties"
- name: Config für Signifikante Eigenschaften einspielen - name: Config für Signifikante Eigenschaften einspielen
ansible.builtin.git: ansible.builtin.git:
repo: "https://git.slub-dresden.de/digital-preservation/significantproperties.git" repo: "https://git.slub-dresden.de/digital-preservation/significantproperties.git"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment