Showing with 629 additions and 2 deletions.
  1. +3 −0 .fixtures.yml
  2. +46 −0 .gitignore
  3. +51 −0 .pmtignore
  4. +3 −0 .puppet-lint.rc
  5. +12 −0 .travis.yml
  6. +13 −0 CHANGELOG.md
  7. +290 −0 CONTRIBUTING.md
  8. +20 −0 Gemfile
  9. +40 −0 Rakefile
  10. +2 −2 manifests/init.pp
  11. +55 −0 metadata.json
  12. +19 −0 spec/classes/init_spec.rb
  13. +5 −0 spec/spec.opts
  14. +28 −0 spec/spec_helper.rb
  15. +42 −0 spec/spec_helper_acceptance.rb
3 changes: 3 additions & 0 deletions .fixtures.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
fixtures:
repositories:
stdlib: 'https://github.com/puppetlabs/puppetlabs-stdlib'
46 changes: 46 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# This file is managed centrally by modulesync
# https://github.com/theforeman/foreman-installer-modulesync

## MAC OS
.DS_Store

## TEXTMATE
*.tmproj
tmtags

## EMACS
*~
\#*
.\#*

## VIM
*.swp
*.swo
tags

## Bundler
Gemfile.lock
.bundle
vendor/

## rbenv / rvm
.rbenv*
.rvmrc*
.ruby-*

## rspec
spec/fixtures/
junit/

## Puppet module
pkg/
coverage/
.yardoc/
REFERENCE.md

## InteliJ / RubyMine
.idea

## Beaker
.vagrant/
log/
51 changes: 51 additions & 0 deletions .pmtignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# This file is managed centrally by modulesync
# https://github.com/theforeman/foreman-installer-modulesync

## MAC OS
.DS_Store

## TEXTMATE
*.tmproj
tmtags

## EMACS
*~
\#*
.\#*

## VIM
*.swp
*.swo
tags

## Bundler
Gemfile.lock
.bundle
vendor/

## rbenv / rvm
.rbenv*
.rvmrc*
.ruby-*

## rspec
spec/fixtures/
junit/

## Puppet module
pkg/
coverage/
.yardoc/

## InteliJ / RubyMine
.idea

## Beaker
.vagrant/
log/

# Files we don't want to ship in a release
CONTRIBUTING.md
Gemfile
Rakefile
spec/
3 changes: 3 additions & 0 deletions .puppet-lint.rc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
--fail-on-warnings
--no-140chars-check
--no-class_inherits_from_params_class-check
12 changes: 12 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
# This file is managed centrally by modulesync
# https://github.com/theforeman/foreman-installer-modulesync
matrix:
fast_finish: true
include:
- rvm: 2.4.1
env: PUPPET_VERSION=5.0
- rvm: 2.5.1
env: PUPPET_VERSION=6.0
bundler_args: --without system_tests development
dist: xenial
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Changelog

## [0.1.0](https://github.com/theforeman/puppet-motd/tree/0.1.0) (2020-04-22)

[Full Changelog](https://github.com/theforeman/puppet-motd/compare/6f785dc5e2f2a97bdf3d29f27d7060d42a152bb3...0.1.0)

**Merged pull requests:**

- Initial modulesync + tests [\#2](https://github.com/theforeman/puppet-motd/pull/2) ([ekohl](https://github.com/ekohl))



\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
Loading