Removed pc_ for better overview

This commit is contained in:
2023-08-22 22:46:37 +02:00
parent d8bd1a37ea
commit 571bed27a3
77 changed files with 41 additions and 41 deletions

View File

@@ -0,0 +1,2 @@
dependencies:
- pc_application-git

View File

@@ -0,0 +1,13 @@
- name: pull ssh repository from {{ssh_configuration_repository}}
git:
repo: "{{ssh_configuration_repository}}"
dest: "$HOME/.ssh"
update: yes
register: git_result
ignore_errors: true
become: false
- name: Warn if repo is not reachable
debug:
msg: "Warning: Repository is not reachable."
when: git_result.failed