infrastructure/roles/database/tasks/main.json
2024-06-01 16:41:29 +02:00

23 lines
532 B
JSON

[
{
"name": "fetch",
"delegate_to": "localhost",
"ansible.builtin.git": {
"repo": "dl-cloud-gitlab:espe/backend",
"version": "{{var_linke_espe_database_git_reference}}",
"dest": "/tmp/espe-database-repo"
}
},
{
"name": "build",
"delegate_to": "localhost",
"ansible.builtin.command": {
"chdir": "/tmp/espe-database-repo",
"cmd": "tools/build {{var_linke_espe_database_revision}} > /tmp/espe-db-init.sql"
}
},
{
"name": "initialize",
"when": "var_linke_espe_database_backup_path == None",
}
]