Skip to content
This repository has been archived by the owner on Jul 20, 2024. It is now read-only.

Commit

Permalink
changes git_client from boolean to string
Browse files Browse the repository at this point in the history
Signed-off-by: Dan D <[email protected]>
  • Loading branch information
dderemiah committed Dec 3, 2023
1 parent 8387bd6 commit 821cd2f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion defaults/main/1_main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ defaults_sem:
telegram_alert: false
slack_alert: false
demo_mode: false
git_client: false
git_client: 'go_git' # can only be go_git or cmd_git

ansible_config: # ansible.cfg => https://docs.ansible.com/ansible/latest/reference_appendices/config.html
defaults: # section
Expand Down
4 changes: 2 additions & 2 deletions templates/etc/semaphore/config.json.j2
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,5 @@
"ldap_enable": {{ cnf_n.ldap_enable | json_bool }},
"ldap_needtls": {{ cnf_n.ldap_needtls | json_bool }},
"demo_mode": {{ cnf_n.demo_mode | json_bool }},
"git_client": "{{ cnf_n.git_client | json_bool }}"
}
"git_client": "{{ cnf_n.git_client }}"
}

0 comments on commit 821cd2f

Please sign in to comment.