kuzushi 0.0.26 → 0.0.27
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/VERSION +1 -1
- data/lib/kuzushi.rb +2 -2
- metadata +2 -2
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.27
|
data/lib/kuzushi.rb
CHANGED
|
@@ -54,7 +54,7 @@ class Kuzushi
|
|
|
54
54
|
|
|
55
55
|
def load_config_stack(name)
|
|
56
56
|
@config_names << name
|
|
57
|
-
@configs << JSON.parse(http_get("#{@base_url}/#{name}"))
|
|
57
|
+
@configs << JSON.parse(http_get("#{@base_url}/#{name}").body)
|
|
58
58
|
if import = @configs.last["import"]
|
|
59
59
|
load_config_stack(import)
|
|
60
60
|
else
|
|
@@ -233,7 +233,7 @@ class Kuzushi
|
|
|
233
233
|
return if v.format == "tmpfs"
|
|
234
234
|
task "formatting #{v.device}", :init => true do
|
|
235
235
|
label = "-L " + v.label rescue ""
|
|
236
|
-
shell "mkfs.#{v.format} #{label} #{v.device}" unless v.mount && mounted?(v.mount)
|
|
236
|
+
shell "mkfs.#{v.format} -q #{label} #{v.device}" unless v.mount && mounted?(v.mount)
|
|
237
237
|
end
|
|
238
238
|
add_package "xfsprogs" if v.format == "xfs"
|
|
239
239
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kuzushi
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.27
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Orion Henry
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2010-02
|
|
12
|
+
date: 2010-03-02 00:00:00 -08:00
|
|
13
13
|
default_executable: kuzushi
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|