File tree Expand file tree Collapse file tree 4 files changed +48
-0
lines changed Expand file tree Collapse file tree 4 files changed +48
-0
lines changed Original file line number Diff line number Diff line change
1
+ . * .sw [op ]
2
+ .bundle /
3
+ pkg /
4
+ Gemfile.lock
5
+ Gemfile.local
Original file line number Diff line number Diff line change
1
+ ---
2
+ branches :
3
+ only :
4
+ - master
5
+ language : ruby
6
+ bundler_args : --without development
7
+ script : " bundle exec rake spec SPEC_OPTS='--format documentation'"
8
+ rvm :
9
+ - 1.8.7
10
+ - 1.9.3
11
+ - 2.0.0
12
+ - 2.1.5
13
+ env :
14
+ matrix :
15
+ - PUPPET_VERSION="~> 2.7.0" FACTER_VERSION="~> 1.6.0"
16
+ - PUPPET_VERSION="~> 2.7.0" FACTER_VERSION="~> 1.7.0"
17
+ - PUPPET_VERSION="~> 3.0"
18
+ matrix :
19
+ exclude :
20
+ - rvm : 1.9.3
21
+ env : PUPPET_VERSION="~> 2.7.0" FACTER_VERSION="~> 1.6.0"
22
+ - rvm : 1.9.3
23
+ env : PUPPET_VERSION="~> 2.7.0" FACTER_VERSION="~> 1.7.0"
24
+ - rvm : 2.0.0
25
+ env : PUPPET_VERSION="~> 2.7.0" FACTER_VERSION="~> 1.6.0"
26
+ - rvm : 2.0.0
27
+ env : PUPPET_VERSION="~> 2.7.0" FACTER_VERSION="~> 1.7.0"
28
+ - rvm : 2.1.5
29
+ env : PUPPET_VERSION="~> 2.7.0" FACTER_VERSION="~> 1.6.0"
30
+ - rvm : 2.1.5
31
+ env : PUPPET_VERSION="~> 2.7.0" FACTER_VERSION="~> 1.7.0"
32
+ notifications :
33
+ email : false
Original file line number Diff line number Diff line change
1
+ source 'https://rubygems.org'
2
+
3
+ puppetversion = ENV . key? ( 'PUPPET_VERSION' ) ? ENV [ 'PUPPET_VERSION' ] : [ '>= 2.7' ]
4
+ facterversion = ENV . key? ( 'FACTER_VERSION' ) ? ENV [ 'FACTER_VERSION' ] : [ '>= 1.6' ]
5
+
6
+ gem 'puppet' , puppetversion
7
+ gem 'puppetlabs_spec_helper' , '>= 0.1.0'
8
+ gem 'facter' , facterversion
Original file line number Diff line number Diff line change 1
1
Puppet Oracle Module
2
2
====================
3
3
4
+ [ ![ Build Status] ( https://travis-ci.org/stschulte/puppet-oracle.png?branch=master )] ( https://travis-ci.org/stschulte/puppet-oracle )
5
+
4
6
This repository aims to ease the configuration of Oracle
5
7
Databases with custom types and providers
6
8
You can’t perform that action at this time.
0 commit comments