Skip to content

Commit

Permalink
L23network v1.1
Browse files Browse the repository at this point in the history
got from pre-release FUEL 36f30ae7f19092a61eebb0522ca20d27468b4cbf
has minimum modifications
  • Loading branch information
Sergey Vasilenko committed Apr 18, 2015
1 parent e5ed7aa commit 7f45b99
Show file tree
Hide file tree
Showing 113 changed files with 8,428 additions and 1,410 deletions.
7 changes: 7 additions & 0 deletions .fixtures.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
fixtures:
repositories:
'stdlib': 'git://github.com/puppetlabs/puppetlabs-stdlib.git'
'filemapper': 'git://github.com/adrienthebo/puppet-filemapper.git'
'sysctl': 'git://github.com/duritong/puppet-sysctl.git'
symlinks:
'l23network': "#{source_dir}"
23 changes: 13 additions & 10 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
#source :rubygems
source 'https://rubygems.org'

gem 'rake'
gem 'puppet-lint'
gem 'rspec'
gem 'rspec-puppet'
group :development, :test do
gem 'rake', :require => false
gem 'rspec', '<=2.99', :require => false
gem 'rspec-puppet', :require => false
gem 'puppetlabs_spec_helper', :require => false
gem 'puppet-lint', :require => false
end

## Will come in handy later on. But you could just use
# gem 'puppet'
puppetversion = ENV.key?('PUPPET_VERSION') ? "~> #{ENV['PUPPET_VERSION']}" : ['>= 2.7']
gem 'puppet', puppetversion
gem 'puppetlabs_spec_helper'
if puppetversion = ENV['PUPPET_GEM_VERSION']
gem 'puppet', puppetversion, :require => false
else
gem 'puppet', :require => false
end

# vim:ft=ruby
2 changes: 1 addition & 1 deletion Modulefile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
name 'Mirantis-l23network'
name 'L23network'

Loading

0 comments on commit 7f45b99

Please sign in to comment.