hiiro 0.1.180 → 0.1.181
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/hiiro/service_manager.rb +3 -2
- data/lib/hiiro/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: e50574888d1a8edb4d08d7e3094c6503213651faa12dc0b7082bf9fe56ff8db2
|
|
4
|
+
data.tar.gz: 57b78ea60f5b5d8f0fd6ff4664eb1b5b1bd747a565e4a98e72ad52b752143528
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6c86412bc4e004ad1ed3a234d926b050389a7c5cca499b34a046e919feb8ec02ef12efd4b7ba67012b520411d36eecf8ea4741420e56e0679f994774cb374f32
|
|
7
|
+
data.tar.gz: bfb4609d6c412dc86fb83da6c7307d4eafa85acbd021d754f8ca8ce4ee9900c12c6f2c8dab46d6220c7d1b25a485057ef0aa52841888d34323d054450d7f186e
|
|
@@ -849,12 +849,13 @@ class Hiiro
|
|
|
849
849
|
env_path = write_env_prep_script(svc_name, variation_overrides)
|
|
850
850
|
end
|
|
851
851
|
|
|
852
|
-
# Write launcher that orchestrates: init -> env -> start
|
|
852
|
+
# Write launcher that orchestrates: init -> env -> start -> reset
|
|
853
853
|
launcher_path = File.join(dir, "#{svc_name}.sh")
|
|
854
854
|
steps = []
|
|
855
855
|
steps << init_path unless init_cmds.empty?
|
|
856
856
|
steps << env_path if env_path
|
|
857
|
-
steps <<
|
|
857
|
+
steps << start_path
|
|
858
|
+
steps << "h service reset #{svc_name}"
|
|
858
859
|
|
|
859
860
|
write_shell_script(launcher_path, steps)
|
|
860
861
|
end
|
data/lib/hiiro/version.rb
CHANGED