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

Commit

Permalink
Merge pull request #1 from dderemiah/git-setting-fix
Browse files Browse the repository at this point in the history
changes git_client from boolean to string
  • Loading branch information
ansibleguy authored Dec 4, 2023
2 parents 8387bd6 + 821cd2f commit aedf1c7
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

Check warning on line 89 in defaults/main/1_main.yml

View workflow job for this annotation

GitHub Actions / build

89:26 [comments] too few spaces before comment

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 aedf1c7

Please sign in to comment.