opskeleton 0.2.0 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- opskeleton (0.2.0)
4
+ opskeleton (0.2.1)
5
5
  thor
6
6
 
7
7
  GEM
@@ -52,6 +52,7 @@ module Opsk
52
52
  end
53
53
 
54
54
  copy_file('templates/hiera.yaml', "#{path}/hiera.yaml")
55
+ copy_file('templates/hiera_vagrant.yaml', "#{path}/hiera_vagrant.yaml")
55
56
  end
56
57
 
57
58
  def readme
@@ -1,3 +1,3 @@
1
1
  module Opskeleton
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.1"
3
3
  end
@@ -0,0 +1,9 @@
1
+ ---
2
+ :backends:
3
+ - yaml
4
+ :logger: console
5
+ :hierarchy:
6
+ - '%{::virtual}'
7
+ - common
8
+ :yaml:
9
+ :datadir: /vagrant/hieradata
@@ -1,5 +1,5 @@
1
1
  group{ 'puppet': ensure => present }
2
2
 
3
- node <%=name%> {
3
+ node '<%=name%>.local' {
4
4
 
5
5
  }
@@ -14,7 +14,7 @@ Vagrant.configure("2") do |config|
14
14
  config.vm.provision :puppet do |puppet|
15
15
  puppet.manifests_path = 'manifests'
16
16
  puppet.manifest_file = 'default.pp'
17
- puppet.options = '--modulepath=/vagrant/modules:/vagrant/static-modules --hiera_config /vagrant/hiera.yaml'
17
+ puppet.options = '--modulepath=/vagrant/modules:/vagrant/static-modules --hiera_config /vagrant/hiera_vagrant.yaml'
18
18
 
19
19
  end
20
20
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: opskeleton
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-04-15 00:00:00.000000000 Z
12
+ date: 2013-04-28 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: thor
@@ -76,6 +76,7 @@ files:
76
76
  - templates/gemfile
77
77
  - templates/gitignore
78
78
  - templates/hiera.yaml
79
+ - templates/hiera_vagrant.yaml
79
80
  - templates/opsk.yml
80
81
  - templates/puppet/default.erb
81
82
  - templates/puppet/site.erb