Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielbull committed Sep 23, 2014
0 parents commit 39a4947
Show file tree
Hide file tree
Showing 11 changed files with 120 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .fixtures.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
fixtures:
symlinks:
unoconv: "#{source_dir}"
12 changes: 12 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
.DS_Store
._*
.Spotlight-V100
.Trashes
Thumbs.db
Desktop.ini
Gemfile.lock
metadata.json
spec/fixtures/modules/
pkg/
.rspec_system/
.bundle/
15 changes: 15 additions & 0 deletions .nodeset.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
default_set: 'centos-64-x64'
sets:
'centos-64-x64':
nodes:
'main':
prefab: 'centos-64-x64'
'centos-59-x64':
nodes:
'main':
prefab: 'centos-59-x64'
'fedora-18-x64':
nodes:
"main":
prefab: 'fedora-18-x64'
3 changes: 3 additions & 0 deletions .rspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
--format documentation
--color
--tty
30 changes: 30 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
language: ruby
bundler_args: --without development
script: "bundle exec rake spec"
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- ruby-head
env:
- PUPPET_GEM_VERSION="~> 3.0.0"
- PUPPET_GEM_VERSION="~> 3.1.0"
- PUPPET_GEM_VERSION="~> 3.2.0"
- PUPPET_GEM_VERSION="~> 3.3.0"
- PUPPET_GEM_VERSION="~> 3.4.0"
matrix:
allow_failures:
- rvm: ruby-head
exclude:
- rvm: 2.0.0
env: PUPPET_GEM_VERSION="~> 3.1.0"
- rvm: 2.0.0
env: PUPPET_GEM_VERSION="~> 3.0.0"
- rvm: 1.9.3
env: PUPPET_GEM_VERSION="~> 2.7.0"
- rvm: 2.0.0
env: PUPPET_GEM_VERSION="~> 2.7.0"
- rvm: ruby-head
env: PUPPET_GEM_VERSION="~> 2.7.0"
notifications:
email: false
15 changes: 15 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
source 'https://rubygems.org'

group :development, :test do
gem 'rake', :require => false
gem 'rspec-puppet', :require => false
gem 'puppetlabs_spec_helper', :require => false
gem 'puppet-lint', :require => false
gem 'rspec-system-puppet', '~>2.0.0'
end

if puppetversion = ENV['PUPPET_GEM_VERSION']
gem 'puppet', puppetversion, :require => false
else
gem 'puppet', :require => false
end
8 changes: 8 additions & 0 deletions Modulefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
name 'gabrielbull-freeswitch'
version '1.0.0'
source 'https://github.com/gabrielbull/puppet-freeswitch'
author 'gabrielbull'
license 'MIT'
summary 'Setup PHP freeswitch'
description 'Setup PHP freeswitch'
project_page 'https://github.com/gabrielbull/puppet-freeswitch'
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
puppet-freeswitch
==============

Puppet module for installing freeswitch

Installs freeswitch support.

Example usage:

```puppet
class { 'freeswitch': }
```

GitHub: https://github.com/gabrielbull/puppet-freeswitch
17 changes: 17 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
require 'puppetlabs_spec_helper/rake_tasks'
require 'puppet-lint/tasks/puppet-lint'
require 'rspec-system/rake_task'

task :default do
sh %{rake -T}
end

# Disable specific puppet-lint checks
PuppetLint.configuration.send("disable_80chars")
PuppetLint.configuration.send("disable_class_inherits_from_params_class")

desc "Run rspec-puppet and puppet-lint tasks"
task :ci => [
:lint,
:spec,
]
2 changes: 2 additions & 0 deletions manifests/init.pp
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
class freeswitch () {
}
1 change: 1 addition & 0 deletions tests/init.pp
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include 'freeswitch'

0 comments on commit 39a4947

Please sign in to comment.