run
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after -47s

This commit is contained in:
2025-03-31 14:25:52 +02:00
parent be534c0102
commit a78d1589e8
3 changed files with 23 additions and 2 deletions

12
ansible.cfg Normal file
View File

@@ -0,0 +1,12 @@
[defaults]
inventory = ./inv/
log_path = ~/.ansible/log_ansible.log
privat_key_file = ~/.ssh/ansible
retry_files_enabled = true
retry_files_save_path = ~/.ansible/retry-files
force_handlers = true
vault_identity_list = ~/.ansible/.vault-pass
#Gather CONFIG
gathering = smart
fact_caching = yaml
fact_caching_connection = ~/.ansible/fact_caching

9
inv/hosts Normal file
View File

@@ -0,0 +1,9 @@
FlaskServer:
hosts:
ras-dan-01:
vars:
ansible_python_interpreter: "/usr/bin/python3"
ansible_ssh_common_args: '-o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null'
ansible_user: jonnybravo
ansible_become: true

View File

@@ -1,8 +1,8 @@
- name: Start PythonFlask - name: Start PythonFlask
gather_facts: True gather_facts: True
become: False become: False
hosts: localhost hosts: FlaskServer
connection: local # connection: local
vars: vars:
project_folder: "/home/jonnybravo/.docker/pythonflask-ausgaben" project_folder: "/home/jonnybravo/.docker/pythonflask-ausgaben"
docker_project_name: "pythonflaskausgabe" docker_project_name: "pythonflaskausgabe"