harbr 0.2.7 → 0.2.8
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/exe/harbr +2 -3
- data/lib/harbr/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1b9e586587823c5ac77b9e3e09f73b53a6045c73748e1eb306edfa8fda6bd270
|
|
4
|
+
data.tar.gz: 0d6257d47ae69bc032f505592263d398a5905808c0d833398dcfa2e1df97c6d6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a5e1b5f85a08ae8c75ef5719f7fbffe64c584203ec5fbc35d25ed77b5515d8de8b2289b1fbda3c51e3d4ff949925493b38a73933cab1985374f09f8745f051e1
|
|
7
|
+
data.tar.gz: c0684653d07a03a9b07e0bd2ec13d179b14edf98e1ceae15dfb8597c1251d68cb78779c49a7b541f9d53440aaeaeba8338df29308e8786a80a36d63732bd30f0
|
data/exe/harbr
CHANGED
|
@@ -137,9 +137,8 @@ class HarbrCLI < Thor
|
|
|
137
137
|
install_with_apt("runit") unless command_exists?("runit")
|
|
138
138
|
install_with_apt("lxc") unless command_exists?("lxc")
|
|
139
139
|
|
|
140
|
-
Harbr::Lxd::Setup.perform("panamax")
|
|
141
|
-
|
|
142
|
-
|
|
140
|
+
Harbr::Lxd::Setup.new.perform("panamax")
|
|
141
|
+
|
|
143
142
|
puts "Setup completed successfully."
|
|
144
143
|
end
|
|
145
144
|
|
data/lib/harbr/version.rb
CHANGED