Skip to content

Commit

Permalink
Merge pull request #38 from ghoneycutt/v1
Browse files Browse the repository at this point in the history
Release v1.0.0
  • Loading branch information
sgnl05 authored May 11, 2017
2 parents ffb6364 + 3b5b4f0 commit 4e454a5
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 87 deletions.
48 changes: 0 additions & 48 deletions .rubocop.yml

This file was deleted.

7 changes: 0 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,13 @@ env:
- PUPPET_GEM_VERSION="~> 4.8.0" CHECK=test
- PUPPET_GEM_VERSION="~> 4.9.0" CHECK=test
- PUPPET_GEM_VERSION="~> 4" CHECK=test
- PUPPET_GEM_VERSION="~> 4" CHECK=rubocop

sudo: false

bundler_args: '--without system_tests development'

script: 'SPEC_OPTS="--format documentation" bundle exec rake $CHECK'

# only do rubocop tests with the newest version of ruby so that we are
# following the most up to date style requirements.
matrix:
fast_finish: true
exclude:
Expand All @@ -56,10 +53,6 @@ matrix:
env: PUPPET_GEM_VERSION="~> 4.9.0" CHECK=test
- rvm: 1.9.3
env: PUPPET_GEM_VERSION="~> 4" CHECK=test
- rvm: 1.9.3
env: PUPPET_GEM_VERSION="~> 4" CHECK=rubocop
- rvm: 2.1.0
env: PUPPET_GEM_VERSION="~> 4" CHECK=rubocop
- rvm: 2.3.1
env: PUPPET_GEM_VERSION="~> 3.1.0" CHECK=test
- rvm: 2.3.1
Expand Down
43 changes: 23 additions & 20 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,41 +1,44 @@
2017-05-09 (1.0.0)
* Release the module as v1.0.0 (Garrett Honeycutt)

2017-01-24 (0.4.1)
* Fix service restart issue #30 (Gjermund Jensvoll)
* Fix messagebus service related error #29 (Gjermund Jensvoll)
* Fix service restart issue #30 (Gjermund Jensvoll)
* Fix messagebus service related error #29 (Gjermund Jensvoll)

2016-11-12 (0.4.0)
* Add support for Ruby 2.3.1 #27 (Garrett Honeycutt)
* Add ensure_resources and ensure_packages to avoid collisions #26 (Daniel James Goulder)
* Add sssd_package_ensure parameter #24 (Taylan Develioglu)
* Add support for Ruby 2.3.1 #27 (Garrett Honeycutt)
* Add ensure_resources and ensure_packages to avoid collisions #26 (Daniel James Goulder)
* Add sssd_package_ensure parameter #24 (Taylan Develioglu)

2016-08-24 (0.3.1)
* Fix Service[oddjobd] failing to start #22 (Jeff McCune)
* Fix newline under each section in sssd.conf #18 (Gjermund Jensvoll)
* Fix Service[oddjobd] failing to start #22 (Jeff McCune)
* Fix newline under each section in sssd.conf #18 (Gjermund Jensvoll)

2016-02-01 (0.3.0)
* Stop sorting config keys for newer ruby versions #13 (Brad Cowie)
* Ensure sssd.conf consistency during first Puppet run #11 (Nemanja Delic)
* Stop sorting config keys for newer ruby versions #13 (Brad Cowie)
* Ensure sssd.conf consistency during first Puppet run #11 (Nemanja Delic)

2015-12-30 (0.2.1)
* Update testing, linting and syntax suites #7 (Chris Edester)
* RedHat 5 authconfig needs to be latest #7 (Chris Edester)
* service_ensure option #6 (Robert Bruce)
* Licence info #5 (Gjermund Jensvoll)
* Update testing, linting and syntax suites #7 (Chris Edester)
* RedHat 5 authconfig needs to be latest #7 (Chris Edester)
* service_ensure option #6 (Robert Bruce)
* Licence info #5 (Gjermund Jensvoll)

2015-07-21 (0.2.0)
* RedHat 5 support #3 (Chris Edester)
* Mkhomedir cmd #2 (Chris Edester)
* RedHat 5 support #3 (Chris Edester)
* Mkhomedir cmd #2 (Chris Edester)

2015-07-20 (0.1.4)
* Anchor pattern, private class and spec tests #1 (Chris Edester)
* Anchor pattern, private class and spec tests #1 (Chris Edester)

2015-07-06 (0.1.3)
* Added missing file pam_mkhomedir (Gjermund Jensvoll)
* Added missing file pam_mkhomedir (Gjermund Jensvoll)

2015-07-06 (0.1.2)
* Fixed metadata.json syntax errors (Gjermund Jensvoll)
* Fixed metadata.json syntax errors (Gjermund Jensvoll)

2015-07-04 (0.1.1)
* Added compatability data for Puppet forge (Gjermund Jensvoll)
* Added compatability data for Puppet forge (Gjermund Jensvoll)

2015-07-04 (0.1.0)
* First release (Gjermund Jensvoll)
* First release (Gjermund Jensvoll)
1 change: 0 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ group :unit_tests do
gem 'puppet-lint-version_comparison-check', :require => false
gem 'puppetlabs_spec_helper', :require => false
gem 'rspec-puppet-facts', :require => false
gem 'rubocop', :require => false if RUBY_VERSION >= '2.0.0'
end

gem 'json', '<= 1.8', :require => false if RUBY_VERSION < '2.0.0'
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,10 @@ Tested on:
* (RHEL|CentOS|OracleLinux) 5,6,7
* Ubuntu 14.04

## Versioning
The v1 series of this module will support both Puppet v3 and v4. The v2
series of this module will drop support for Puppet v3.

## Credits

* sssd.conf template from [walkamongus-sssd][2] by Chadwick Banning
Expand Down
10 changes: 0 additions & 10 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,6 @@ require 'puppet-lint/tasks/puppet-lint'
require 'puppet-syntax/tasks/puppet-syntax'
require 'metadata-json-lint/rake_task'

if RUBY_VERSION >= '2.0'
require 'rubocop/rake_task'
RuboCop::RakeTask.new
end

exclude_paths = [
'modules/**/*',
'pkg/**/*',
Expand All @@ -30,11 +25,6 @@ RSpec::Core::RakeTask.new(:acceptance) do |t|
t.pattern = 'spec/acceptance'
end

desc 'Run RuboCop'
task :rubocop do
sh 'rubocop'
end

desc 'Clean up modules / pkg'
task :clean do
sh 'rm -rf modules pkg spec/fixtures'
Expand Down
2 changes: 1 addition & 1 deletion metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sgnl05-sssd",
"version": "0.4.1",
"version": "1.0.0",
"author": "sgnl05",
"summary": "Install and configure SSSD",
"license": "GPL-3.0+",
Expand Down

0 comments on commit 4e454a5

Please sign in to comment.