21 lines
463 B
Bash
Executable File
21 lines
463 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Bacula directory for restore
|
|
baculaDir=/mnt/mysqldata/bacula-restore
|
|
|
|
# Database branch name
|
|
dbBranch=test
|
|
|
|
# Database environment
|
|
dbEnvironment=test
|
|
|
|
# MariaDB cluster sibling node hostnames
|
|
dbClusterSiblings=()
|
|
|
|
# Jenkins authentication string
|
|
jenkinsAuth=jenkins:{{ lookup(passbolt, 'jenkinsAuth', folder_parent_id=passbolt_folder).password }}
|
|
|
|
# Jenkins job URL
|
|
jenkinsUrl=https://jenkins.verdnatura.es/job/Scheduler/job/db-apply-changes-test
|
|
|