Skip to content
This repository was archived by the owner on Sep 6, 2023. It is now read-only.

Commit 8ac0d76

Browse files
committed
Removed quoting of booleans and arrays
1 parent edde725 commit 8ac0d76

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

templates/gitlab.rb.j2

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ nginx['redirect_http_to_https'] = {{ gitlab_redirect_http_to_https }}
1919
nginx['ssl_certificate'] = "{{ gitlab_ssl_certificate }}"
2020
nginx['ssl_certificate_key'] = "{{ gitlab_ssl_certificate_key }}"
2121

22-
letsencrypt['enable'] = "{{ gitlab_letsencrypt_enable }}"
22+
letsencrypt['enable'] = {{ gitlab_letsencrypt_enable }}
2323
{% if gitlab_letsencrypt_enable %}
24-
letsencrypt['contact_emails'] = "{{ gitlab_letsencrypt_contact_emails | to_json }}"
24+
letsencrypt['contact_emails'] = {{ gitlab_letsencrypt_contact_emails | to_json }}
2525
letsencrypt['auto_renew_hour'] = "{{ gitlab_letsencrypt_auto_renew_hour }}"
2626
letsencrypt['auto_renew_minute'] = "{{ gitlab_letsencrypt_auto_renew_minute }}"
2727
letsencrypt['auto_renew_day_of_month'] = "{{ gitlab_letsencrypt_auto_renew_day_of_month }}"
28-
letsencrypt['auto_renew'] = "{{ gitlab_letsencrypt_auto_renew }}"
28+
letsencrypt['auto_renew'] = {{ gitlab_letsencrypt_auto_renew }}
2929
{% endif %}
3030

3131
# The directory where Git repositories will be stored.

0 commit comments

Comments
 (0)