2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ cache: bundler

before_install:
- if [ $BUNDLER_VERSION ]; then
gem install -v $BUNDLER_VERSION bundler --no-rdoc --no-ri;
gem install -v $BUNDLER_VERSION bundler --no-document;
fi
- bundle -v
- rm Gemfile.lock || true
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### v3.62.0 - 2020-09-07
* Support Ubuntu 20.04 LTS

### v3.61.0 - 2019-05-01
* Support Debian 8
* Support Ubuntu 18.04 LTS
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (C) 2010-2019 Garrett Honeycutt <code@garretthoneycutt.com>
Copyright (C) 2010-2020 Garrett Honeycutt <code@garretthoneycutt.com>

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ for the exact matrix of supported Puppet and ruby versions.
* Debian 7
* Debian 8
* Debian 9
* Debian 10
* EL 5
* EL 6
* EL 7
Expand All @@ -39,6 +40,7 @@ for the exact matrix of supported Puppet and ruby versions.
* Ubuntu 14.04 LTS
* Ubuntu 16.04 LTS
* Ubuntu 18.04 LTS
* Ubuntu 20.04 LTS
* Solaris 9
* Solaris 10
* Solaris 11
Expand Down Expand Up @@ -426,7 +428,7 @@ X11Forwarding in sshd_config. Specifies whether X11 forwarding is permitted.

sshd_x11_use_localhost
----------------------
X11UseLocalhost in sshd_config. Specifies if sshd should bind the X11 forwarding server
X11UseLocalhost in sshd_config. Specifies if sshd should bind the X11 forwarding server
to the loopback address or to the wildcard address.

- *Default*: 'yes'
Expand Down
1 change: 1 addition & 0 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ require 'puppetlabs_spec_helper/rake_tasks'
require 'puppet-lint/tasks/puppet-lint'
PuppetLint.configuration.send('disable_80chars')
PuppetLint.configuration.send('disable_140chars')
PuppetLint.configuration.send('disable_relative_classname_inclusion')
PuppetLint.configuration.relative = true
PuppetLint.configuration.ignore_paths = ['spec/**/*.pp', 'pkg/**/*.pp', 'vendor/**/*.pp']

Expand Down
Loading