harbr 0.1.26 → 0.1.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.
- checksums.yaml +4 -4
- data/exe/harbr +2 -1
- 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: '04821b272719362dd9f82b4d31401d5ab7a495df5cb4c176f1bd6b216cd3306f'
|
|
4
|
+
data.tar.gz: ccbffdc3192f2d6104df44c6b0b783052ef612297d722d3f39d4fa336b064c7f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d5201e4a3bdd3e8e4352b75a9fb46ac55763056869e160e32d30f05e3493094165905b888b08dabbf10224f8389e1841b1ac358599d38c67714e8863be422333
|
|
7
|
+
data.tar.gz: 5ed702b8f2e806bb4e2d531ff5b4d0ef34d6db249c3746fc90f83696e98bbecbeea4b8cb4ad51187c4c608e97867a4a9e0244714ccf7fdb0d96e816f81ebd62b
|
data/exe/harbr
CHANGED
|
@@ -117,13 +117,14 @@ class HarbrCLI < Thor
|
|
|
117
117
|
|
|
118
118
|
[name, "next.#{name}"].each do |container_name|
|
|
119
119
|
container = container_repo.find_by_name(container_name)
|
|
120
|
+
`port release #{container.port}` if container
|
|
120
121
|
container_repo.delete(container) if container
|
|
121
122
|
|
|
122
123
|
`rm -rf /etc/service/#{container_name}`
|
|
123
124
|
`rm -rf /etc/sv/harbr/#{container_name}`
|
|
124
125
|
|
|
125
126
|
puts "Container #{container_name} destroyed successfully."
|
|
126
|
-
|
|
127
|
+
|
|
127
128
|
puts "released port #{container.port} successfully."
|
|
128
129
|
end
|
|
129
130
|
|
data/lib/harbr/version.rb
CHANGED