├── .gitattributes ├── .gitignore ├── Gemfile ├── README.md ├── Rakefile ├── files └── download-artifact-from-nexus.sh ├── manifests ├── artifact.pp └── init.pp ├── metadata.json ├── spec ├── spec.opts └── spec_helper.rb └── tests └── init.pp /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sh eol=lf 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .project 2 | .bundle/ 3 | vendor/ 4 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cescoffier/puppet-nexus/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cescoffier/puppet-nexus/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cescoffier/puppet-nexus/HEAD/Rakefile -------------------------------------------------------------------------------- /files/download-artifact-from-nexus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cescoffier/puppet-nexus/HEAD/files/download-artifact-from-nexus.sh -------------------------------------------------------------------------------- /manifests/artifact.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cescoffier/puppet-nexus/HEAD/manifests/artifact.pp -------------------------------------------------------------------------------- /manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cescoffier/puppet-nexus/HEAD/manifests/init.pp -------------------------------------------------------------------------------- /metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cescoffier/puppet-nexus/HEAD/metadata.json -------------------------------------------------------------------------------- /spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cescoffier/puppet-nexus/HEAD/spec/spec.opts -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cescoffier/puppet-nexus/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /tests/init.pp: -------------------------------------------------------------------------------- 1 | include nexus 2 | --------------------------------------------------------------------------------