kafo 0.2.1 → 0.2.2
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.
- checksums.yaml +4 -4
- data/lib/kafo/puppet_command.rb +6 -2
- data/lib/kafo/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 172038c701a1e259a865a0315bb5d31a41797420
|
|
4
|
+
data.tar.gz: c526c08e0df34742fd03fdfc0cac5c99595eb13a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2a1c8d58ec05bba52eb9f190a9d6743d154b45ccc39dd33fc1aa830302c8a011e8255a4f1bce76365986b9a504c7318bbd0781015b12120fbd088f984d551adc
|
|
7
|
+
data.tar.gz: 51e160a1ee3329136b0c36ae7492384d39506b9a64db76b5e2dcd9269b4074f2a496f9b48b6b3a2a485b8da740b405fdb3c08bb11f361dd21bda8a3561aced6a
|
data/lib/kafo/puppet_command.rb
CHANGED
|
@@ -2,8 +2,12 @@
|
|
|
2
2
|
class PuppetCommand
|
|
3
3
|
def initialize(command, options = [])
|
|
4
4
|
@command = command
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
|
|
6
|
+
# Expand the modules_path to work around the fact that Puppet doesn't
|
|
7
|
+
# allow modulepath to contain relative (i.e ..) directory references as
|
|
8
|
+
# of 2.7.23.
|
|
9
|
+
@options = options.push("--modulepath #{File.expand_path(modules_path)}")
|
|
10
|
+
@logger = KafoConfigure.logger
|
|
7
11
|
end
|
|
8
12
|
|
|
9
13
|
def custom_answer_file
|
data/lib/kafo/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kafo
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Marek Hulan
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-
|
|
11
|
+
date: 2013-12-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|