gepetto 0.0.8 → 0.0.9

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.
@@ -1,3 +1,7 @@
1
+ == 0.0.9 2009-12-15
2
+
3
+ * Add sandbox manifest files
4
+
1
5
  == 0.0.8 2009-11-02
2
6
 
3
7
  * Fix a problem with network interface renaming performed by udev
@@ -12,6 +12,8 @@ app_generators/gepetto/templates/manifests/defaults.pp
12
12
  app_generators/gepetto/templates/manifests/nodes.pp
13
13
  app_generators/gepetto/templates/manifests/site.pp
14
14
  app_generators/gepetto/templates/manifests/templates.pp
15
+ app_generators/gepetto/templates/manifests/sandbox.pp
16
+ app_generators/gepetto/templates/manifests/sandbox-sample.pp
15
17
  app_generators/gepetto/templates/script/module
16
18
  app_generators/gepetto/templates/script/puppetca
17
19
  app_generators/gepetto/templates/script/puppetmasterd
@@ -22,6 +22,10 @@ class GepettoGenerator < RubiGen::Base
22
22
 
23
23
  m.template_copy_each %w( defaults.pp site.pp templates.pp nodes.pp ), 'manifests'
24
24
 
25
+ m.template_copy_each %w( defaults.pp site.pp templates.pp nodes.pp ), 'manifests'
26
+
27
+ m.template_copy_each %w( sandbox.pp sandbox-sample.pp ), 'manifests'
28
+
25
29
  m.template_copy_each %w( empty.pp ), 'manifests/classes'
26
30
 
27
31
  m.template_copy_each %w( puppet.conf fileserver.conf ), 'config'
@@ -3,7 +3,7 @@
3
3
  Exec { path => "/usr/bin:/usr/sbin/:/bin:/sbin:/usr/local/bin:/usr/local/sbin" }
4
4
 
5
5
  File {
6
- ignore => ['.svn', '.git', 'CVS' ],
6
+ ignore => ['.svn', '.git', 'CVS', '*~' ],
7
7
  checksum => md5,
8
8
  owner => root, group => root,
9
9
  backup => server
@@ -0,0 +1,5 @@
1
+ # DO NOT MODIFY THIS FILE, CREATE A sandbox.pp FILE
2
+
3
+ # node 'sandbox' {
4
+ # notice("sandbox is ready")
5
+ # }
@@ -0,0 +1,5 @@
1
+ # This file should be ignored by your SCM
2
+
3
+ node 'sandbox' {
4
+
5
+ }
@@ -4,6 +4,7 @@
4
4
  # http://reductivelabs.com/trac/puppet/wiki/PuppetBestPractice
5
5
 
6
6
  import "defaults"
7
- import "classes/*"
7
+ import "classes/*.pp"
8
8
  import "templates"
9
9
  import "nodes"
10
+ import "sandbox*.pp"
@@ -2,5 +2,5 @@ $:.unshift(File.dirname(__FILE__)) unless
2
2
  $:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))
3
3
 
4
4
  module Gepetto
5
- VERSION = '0.0.8'
5
+ VERSION = '0.0.9'
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gepetto
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.8
4
+ version: 0.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alban Peignier
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-11-02 00:00:00 +01:00
12
+ date: 2009-12-15 00:00:00 +01:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -20,7 +20,7 @@ dependencies:
20
20
  requirements:
21
21
  - - ">="
22
22
  - !ruby/object:Gem::Version
23
- version: 2.3.3
23
+ version: 2.4.0
24
24
  version:
25
25
  description: |-
26
26
  A helper suite for Puppet projects to create, manage and help daily development
@@ -50,6 +50,8 @@ files:
50
50
  - app_generators/gepetto/templates/manifests/nodes.pp
51
51
  - app_generators/gepetto/templates/manifests/site.pp
52
52
  - app_generators/gepetto/templates/manifests/templates.pp
53
+ - app_generators/gepetto/templates/manifests/sandbox.pp
54
+ - app_generators/gepetto/templates/manifests/sandbox-sample.pp
53
55
  - app_generators/gepetto/templates/script/module
54
56
  - app_generators/gepetto/templates/script/puppetca
55
57
  - app_generators/gepetto/templates/script/puppetmasterd