Skip to content

Commit ed9dbd7

Browse files
committed
Upgrade Mattermost cookbook to support v5.1.1
- Close #34
1 parent 7fbf1f2 commit ed9dbd7

File tree

5 files changed

+13
-7
lines changed

5 files changed

+13
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# Mattermost Cookbook Changelog
22

33
This file is used to list changes made in each version of the Mattermost cookbook.
4+
5+
## v2.1.1 (2018.08.13)
6+
7+
- [#34](https://github.com/ist-dsi/mattermost-cookbook/issues/34) Update to Mattermost 5.1.1
8+
- [#35](https://github.com/ist-dsi/mattermost-cookbook/pull/35) Add `download_dir` option to `tar_extract` resource.
9+
410
## v2.1.0 (2018.07.16)
511

612
- Update settings for Mattermost 5.1.0

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This cookbook installs and configures [Mattermost, the opensource Slack alternat
1010

1111
| Mattermost Version | Cookbook Version |
1212
|:------------------:|:----------------:|
13-
| 5.1.0 | v2.1.0 |
13+
| 5.1.1 | v2.1.1 |
1414
| 5.0.1 | v2.0.0 |
1515
| 4.10.1 | v1.6.10 |
1616

@@ -40,7 +40,7 @@ Using this cookbook is relatively straightforward. It is recommended to create a
4040

4141
### Attributes
4242

43-
All settings are the [default settings](https://github.com/mattermost/mattermost-server/blob/v5.1.0/config/default.json) that come from [Mattermost repository](https://github.com/mattermost/mattermost-server/). Make sure to review them all and change what's necessary.
43+
All settings are the [default settings](https://github.com/mattermost/mattermost-server/blob/v5.1.1/config/default.json) that come from [Mattermost repository](https://github.com/mattermost/mattermost-server/). Make sure to review them all and change what's necessary.
4444

4545
## License and Authors
4646

attributes/mattermost.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
default['mattermost']['package'] = {
2-
'url' => 'https://releases.mattermost.com/5.1.0/mattermost-5.1.0-linux-amd64.tar.gz',
3-
'checksum' => '7f14412231a852fb307ff0bea9f67dcbc862da9901d55d91d7838b092db6a5ae',
2+
'url' => 'https://releases.mattermost.com/5.1.1/mattermost-5.1.1-linux-amd64.tar.gz',
3+
'checksum' => '18ab8f43ebd2652cba946e0430399ed15e10ef44a3aca88e4467ea55da265ef4',
44
}
55

66
default['mattermost']['config'] = {

metadata.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name 'mattermost-cookbook'
22
license 'Apache-2.0'
3-
version '2.1.0'
3+
version '2.1.1'
44

55
chef_version '>= 12.19'
66

spec/default_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
end
99

1010
it 'downloads and extracts' do
11-
expect(chef_run).to extract_tar_extract('https://releases.mattermost.com/5.1.0/mattermost-5.1.0-linux-amd64.tar.gz').with(
12-
checksum: '7f14412231a852fb307ff0bea9f67dcbc862da9901d55d91d7838b092db6a5ae',
11+
expect(chef_run).to extract_tar_extract('https://releases.mattermost.com/5.1.1/mattermost-5.1.1-linux-amd64.tar.gz').with(
12+
checksum: '18ab8f43ebd2652cba946e0430399ed15e10ef44a3aca88e4467ea55da265ef4',
1313
target_dir: '/opt',
1414
user: 'mattermost',
1515
group: 'mattermost'

0 commit comments

Comments
 (0)