Skip to content

Commit e54ec1a

Browse files
committed
Merge pull request #116 from yakara-ltd/github_https
Fetch using HTTPS instead of git protocol
2 parents 892cfef + aad8ee9 commit e54ec1a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Attributes
7777
- Gitlab support email, default `gitlab-support@ + node.fqdn`
7878

7979
* `gitlab['git_url']`
80-
- Github gitlab address, default git://github.com/gitlabhq/gitlabhq.git
80+
- Github gitlab address, default https://github.com/gitlabhq/gitlabhq.git
8181

8282
* `gitlab['git_branch']`
8383
- Defaults to stable GitlabHQ branch matching the major version of this cookbook. e.g. 6.1.x => 6-1-stable

attributes/default.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@
3535
default['gitlab']['username_changing_enabled'] = true
3636

3737
# Set github URL for gitlab
38-
default['gitlab']['git_url'] = 'git://github.com/gitlabhq/gitlabhq.git'
38+
default['gitlab']['git_url'] = 'https://github.com/gitlabhq/gitlabhq.git'
3939
default['gitlab']['git_branch'] = '8-5-stable'
4040

4141
# gitlab-shell attributes
4242
default['gitlab']['shell']['home'] = node['gitlab']['home'] + '/gitlab-shell'
43-
default['gitlab']['shell']['git_url'] = 'git://github.com/gitlabhq/gitlab-shell.git'
43+
default['gitlab']['shell']['git_url'] = 'https://github.com/gitlabhq/gitlab-shell.git'
4444
default['gitlab']['shell']['git_branch'] = 'v2.6.10'
4545
default['gitlab']['shell']['gitlab_host'] = nil
4646

0 commit comments

Comments
 (0)