Skip to content

Commit

Permalink
Merge pull request #130 from xbezdick/master
Browse files Browse the repository at this point in the history
Add puppet-ipa module
  • Loading branch information
strider committed Oct 24, 2014
2 parents 0e5c744 + 932e47a commit db4c220
Show file tree
Hide file tree
Showing 83 changed files with 8,519 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Puppetfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ mod 'common',
:git => 'https://github.com/purpleidea/puppet-common.git'

mod 'concat',
:commit => '644fb1b6dc8b64accc4d1208d6127b79a08a38b7'
:git => 'https://github.com/puppetlabs/puppetlabs-concat.git',
:commit => '644fb1b6dc8b64accc4d1208d6127b79a08a38b7',
:git => 'https://github.com/puppetlabs/puppetlabs-concat.git'

mod 'firewall',
:commit => 'd5a10f5a52d84b9fcfb8fc65ef505685a07d5799',
Expand Down Expand Up @@ -54,6 +54,10 @@ mod 'inifile',
:commit => 'fe9b0d5229ea37179a08c4b49239da9bc950acd1',
:git => 'https://github.com/puppetlabs/puppetlabs-inifile.git'

mod 'ipa',
:commit => '2cbd870b0dba2b8f588d74fc5ff8aa9cd0dc9ccf',
:git => 'https://github.com/xbezdick/puppet-ipa.git'

mod 'keystone',
:commit => '605161f3d4b7bbcffc657c86b367159701dfdcbe',
:git => 'https://github.com/stackforge/puppet-keystone.git'
Expand Down
6 changes: 6 additions & 0 deletions ipa/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
tmp/
old/
pkg/
hacking/
.pmtignore
puppet-ipa-documentation.pdf
21 changes: 21 additions & 0 deletions ipa/.gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
[submodule "vagrant/puppet/modules/puppet"]
path = vagrant/puppet/modules/puppet
url = https://github.com/purpleidea/puppet-puppet
[submodule "vagrant/puppet/modules/module-data"]
path = vagrant/puppet/modules/module-data
url = https://github.com/purpleidea/puppet-module-data
[submodule "vagrant/puppet/modules/stdlib"]
path = vagrant/puppet/modules/stdlib
url = https://github.com/purpleidea/puppetlabs-stdlib
[submodule "vagrant/puppet/modules/shorewall"]
path = vagrant/puppet/modules/shorewall
url = https://github.com/purpleidea/puppet-shorewall
[submodule "vagrant/puppet/modules/yum"]
path = vagrant/puppet/modules/yum
url = https://github.com/purpleidea/puppet-yum
[submodule "vagrant/puppet/modules/ssh"]
path = vagrant/puppet/modules/ssh
url = https://github.com/purpleidea/puppet-ssh
[submodule "vagrant/puppet/modules/keepalived"]
path = vagrant/puppet/modules/keepalived
url = https://github.com/purpleidea/puppet-keepalived
16 changes: 16 additions & 0 deletions ipa/.travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
language: ruby
rvm: 1.8.7
notifications:
email:
- [email protected]
# TODO: do a full rake test once warnings are all gone!
#script: 'bundle exec rake test'
script: 'bundle exec rake syntax'
env:
# - PUPPET_VERSION=2.7.26
- PUPPET_VERSION=3.0.2
- PUPPET_VERSION=3.1.1
- PUPPET_VERSION=3.2.4
- PUPPET_VERSION=3.3.2
- PUPPET_VERSION=3.4.3

661 changes: 661 additions & 0 deletions ipa/COPYING

Large diffs are not rendered by default.

16 changes: 16 additions & 0 deletions ipa/COPYRIGHT
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
Copyright (C) 2012-2013+ James Shubin
Written by James Shubin <[email protected]>

This puppet module is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This puppet module is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.

You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.

Loading

0 comments on commit db4c220

Please sign in to comment.