Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ptomulik committed Jan 7, 2014
0 parents commit 7a86edb
Show file tree
Hide file tree
Showing 16 changed files with 2,173 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .fixtures.yml
@@ -0,0 +1,7 @@
fixtures:
repositories:
packagex_resource: "git://github.com/ptomulik/puppet-packagex_resource.git"
portsxutil: "git://github.com/ptomulik/puppet-portsxutil.git"
vash: "git://github.com/ptomulik/puppet-vash.git"
symlinks:
packagex_portsx: "#{source_dir}"
17 changes: 17 additions & 0 deletions .gitignore
@@ -0,0 +1,17 @@
.pkg
Gemfile.lock
vendor
pkg
spec/fixtures
spec/lib
.rspec_system
.bundle
# Editor junk
*.swp
*.bkp
*.bak
*~
.tmp/
.yardoc/
doc/
coverage/
31 changes: 31 additions & 0 deletions .nodeset.yml
@@ -0,0 +1,31 @@
---
default_set: 'centos-64-x64'
sets:
'centos-59-x64':
nodes:
"main.foo.vm":
prefab: 'centos-59-x64'
'centos-64-x64':
nodes:
"main.foo.vm":
prefab: 'centos-64-x64'
'fedora-18-x64':
nodes:
"main.foo.vm":
prefab: 'fedora-18-x64'
'debian-607-x64':
nodes:
"main.foo.vm":
prefab: 'debian-607-x64'
'debian-70rc1-x64':
nodes:
"main.foo.vm":
prefab: 'debian-70rc1-x64'
'ubuntu-server-10044-x64':
nodes:
"main.foo.vm":
prefab: 'ubuntu-server-10044-x64'
'ubuntu-server-12042-x64':
nodes:
"main.foo.vm":
prefab: 'ubuntu-server-12042-x64'
2 changes: 2 additions & 0 deletions .puppet-lint.rc
@@ -0,0 +1,2 @@
--no-80chars-check
--no-only_variable_string-check
3 changes: 3 additions & 0 deletions .rspec
@@ -0,0 +1,3 @@
--format d
--colour
--backtrace
38 changes: 38 additions & 0 deletions .travis.yml
@@ -0,0 +1,38 @@
---
language: ruby
# temporary workaround for travis issue #1793
# see: https://github.com/travis-ci/travis-ci/issues/1793
before_install:
- gem update --system 2.1.11
- gem --version
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
# - ruby-head
script: "bundle exec rake spec SPEC_OPTS='--format documentation'"
branches:
only:
master
env:
matrix:
- PUPPET_GEM_VERSION="~> 2.7.0"
- PUPPET_GEM_VERSION="~> 3.0.0"
- PUPPET_GEM_VERSION="~> 3.1.0"
- PUPPET_GEM_VERSION="~> 3.2.0"
matrix:
allow_failures:
# - rvm: ruby-head
exclude:
- rvm: 1.8.7
env: PUPPET_GEM_VERSION="~> 2.7.0"
- rvm: 1.9.3
env: PUPPET_GEM_VERSION="~> 2.7.0"
- rvm: 2.0.0
env: PUPPET_GEM_VERSION="~> 2.7.0"
- rvm: 2.0.0
env: PUPPET_GEM_VERSION="~> 3.0.0"
- rvm: 2.0.0
env: PUPPET_GEM_VERSION="~> 3.1.0"
notifications:
email: false
2 changes: 2 additions & 0 deletions CHANGELOG
@@ -0,0 +1,2 @@
2014-01-06 Pawel Tomulik <ptomulik@meil.pw.edu.pl>
* initial commit
20 changes: 20 additions & 0 deletions Gemfile
@@ -0,0 +1,20 @@
source 'https://rubygems.org'

group :development, :test do
gem 'rake'
gem 'rspec-puppet'
gem 'puppetlabs_spec_helper', :require => false
gem 'rspec-system-puppet'
gem 'rspec-system-serverspec', :require => false
if RUBY_VERSION >= '1.9'
gem 'coveralls', :require => false
end
end

if puppetversion = ENV['PUPPET_GEM_VERSION']
gem 'puppet', puppetversion, :require => false
else
gem 'puppet', :require => false
end

# vim:ft=ruby
16 changes: 16 additions & 0 deletions LICENSE
@@ -0,0 +1,16 @@
Packagex - puppet package resource with extensions.

Copyright (C) 2013-2014 Paweł Tomulik <ptomulik@meil.pw.edu.pl>.
Copyright (C) 2005-2013 Puppet Labs Inc

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
12 changes: 12 additions & 0 deletions Modulefile
@@ -0,0 +1,12 @@
name 'ptomulik-packagex_portsx'
version '0.1.0'
source 'git://github.com/ptomulik/puppet-packagex_portsx.git'
author 'ptomulik'
license 'Apache License, Version 2.0'
summary 'Ports provider for packagex resource type'
description 'Ports provider for packagex resource type'
project_page 'https://gitbub.com/ptomulik/puppet-packagex_portsx'

## Add dependencies, if any:
dependency 'ptomulik-packagex_resource', '>= 0.1.2'
dependency 'ptomulik-portsxutil', '>= 0.1.2'

0 comments on commit 7a86edb

Please sign in to comment.