Skip to content

Commit

Permalink
v7.7.1
Browse files Browse the repository at this point in the history
* Closes #90, incorrect instance variable in template.
  • Loading branch information
atomic-penguin committed Feb 27, 2015
1 parent 0e9a8c9 commit 6596829
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Gitlab Cookbook Changelog
=========================

v7.7.1
------

* Closes #90, incorrect instance variable in template.

v7.7.0
------

Expand Down
2 changes: 1 addition & 1 deletion metadata.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
description 'Installs/Configures gitlab'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
name 'gitlab'
version '7.7.0'
version '7.7.1'

%w(build-essential zlib readline ncurses git openssh redisio xml
ruby_build certificate database logrotate nginx
Expand Down
2 changes: 1 addition & 1 deletion recipes/default.rb
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@
source 'shell_config.yml.erb'
variables(
fqdn: api_fqdn,
listen: listen_port
listen_port: listen_port
)
end

Expand Down
2 changes: 1 addition & 1 deletion templates/default/gitlab.yml.erb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ production: &base
gitlab:
## Web server settings
host: <%= @fqdn %>
port: <%= @port %>
port: <%= @listen_port %>
https: <%= @https_boolean %>

# Uncomment and customize the last line to run in a non-root path
Expand Down

0 comments on commit 6596829

Please sign in to comment.