kafo 0.6.0 → 0.6.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.
- checksums.yaml +4 -4
- data/README.md +21 -3
- data/lib/kafo/param.rb +1 -1
- 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: 0097c3f1015a3bc27149e943a0e5257b77a641bb
|
|
4
|
+
data.tar.gz: 877e319c7e26ff0d1d1fdb67356fe7142b36754e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 962a956c320e0439e92d6445054a7fc824d360cfcc723df413c959f5ab6ef24cd4d4072c931169d8f03f5087cff63274b5504e53166bba638042225b244c66df
|
|
7
|
+
data.tar.gz: 7b4cb0746de680498b5ecb97644213248f423764ff7518f13c4f3eab539036b6153c33ac8af3c58e07c3c4ec94dd835bbb5e575375b2eac34388d4aab9f876d4
|
data/README.md
CHANGED
|
@@ -71,13 +71,13 @@ argument --name (or -n for short, foreman-installer in this case) a script in
|
|
|
71
71
|
bin is created.
|
|
72
72
|
|
|
73
73
|
It's the script you can use to run installer. If you did not specify any
|
|
74
|
-
you can run your installer by
|
|
74
|
+
you can run your installer by `kafo-configure` which is the default.
|
|
75
75
|
All configuration related files are to be found in config directory.
|
|
76
76
|
|
|
77
77
|
You can supply custom locations for you configuration and answers files using
|
|
78
78
|
options:
|
|
79
|
-
|
|
80
|
-
|
|
79
|
+
```
|
|
80
|
+
kafofy --help
|
|
81
81
|
Usage: kafofy [options]
|
|
82
82
|
-a, --answer_file FILE location of the answer file
|
|
83
83
|
-c, --config_file FILE location of the configuration file
|
|
@@ -141,6 +141,24 @@ the lower the item is the higher precedence it has:
|
|
|
141
141
|
* values specified on CLI
|
|
142
142
|
* interactive mode arguments
|
|
143
143
|
|
|
144
|
+
## How do I report bugs or contribute?
|
|
145
|
+
|
|
146
|
+
You can find our redmine issue tracker [here](http://projects.theforeman.org/projects/kafo),
|
|
147
|
+
you can use your github account for logging in. When reporting new issue please
|
|
148
|
+
don't forget to specify your:
|
|
149
|
+
* puppet version
|
|
150
|
+
* installation options (GEM/RPM/DEB)
|
|
151
|
+
* error trace (if any) or log with debug level
|
|
152
|
+
* reproducing steps
|
|
153
|
+
|
|
154
|
+
Since Kafo is a side project of Foreman you can use its IRC channels to
|
|
155
|
+
contact us on freenode. #theforeman is channel for generic discussions
|
|
156
|
+
and #theforeman-dev is for technical topics. Likewise you can use Foreman
|
|
157
|
+
mailing lists on googlegroups. For more information see [this page](http://theforeman.org/support.html)
|
|
158
|
+
|
|
159
|
+
Patches are always welcome. You can use instructions for Foreman, just
|
|
160
|
+
substitute Foreman with Kafo. More details are [here](http://projects.theforeman.org/projects/foreman/wiki/Contribute#New-Way-github)
|
|
161
|
+
|
|
144
162
|
# Advanced topics
|
|
145
163
|
|
|
146
164
|
## Testing aka noop etc
|
data/lib/kafo/param.rb
CHANGED
|
@@ -46,7 +46,7 @@ module Kafo
|
|
|
46
46
|
# we fallback to their own default values
|
|
47
47
|
if defaults.has_key?(default)
|
|
48
48
|
value = defaults[default]
|
|
49
|
-
self.value = (
|
|
49
|
+
self.value = ([:undef, :undefined].include?(value) ? nil : value)
|
|
50
50
|
else
|
|
51
51
|
self.value = self.default
|
|
52
52
|
end
|
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.6.
|
|
4
|
+
version: 0.6.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Marek Hulan
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-06-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|