brpm_content 0.1.17 → 0.1.18
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 +8 -8
- data/modules/framework/brpm_script_executor.rb +2 -2
- data/modules/framework/config.yml +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
ZmRiZmZlMGY0ZTM2MzI1MTkwMmMxMDBiZDIxMTJiYWM5OGE2OTllNg==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
YTZjMjBlNDBmNjJlMTgzMGEzYmUwMmNkODc4ZGRlZTZiY2QzNWVmZQ==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
MGYyNTcwMDdlYjM4OTgwMzA1MjgyMTkzMWVmYjkxYmYxYzRhOTM4MjJkZTc5
|
10
|
+
ZmVmNjE4ZjE3YTBlYjBhMDk0NjdlNjcwNzgxODNjYWQ2ZDNmZWQzOGE0YjM4
|
11
|
+
ZWMwODNkYTQwM2M2NDc5MjE0ZjZkZTdhN2I5ZTYyNzUzZjk3MGU=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
YTJhNjQ4ZDAzNDhhYTQ2NzczNTk3OWEzNWE2MjliMjRlMDk5NzQzNWRkZmZi
|
14
|
+
ZjNlYTExY2IzZDRjNGQ5NmQxZmRlZmFmMzA0MzRmZjg1NmY1YmQ5ZDM3Njc1
|
15
|
+
OTEyM2I2Yjc1YTA0ZjI5YTAzZWZkZjIzMGY2ZjIzMTYxMDE1NGY=
|
@@ -80,7 +80,7 @@ class BrpmScriptExecutor
|
|
80
80
|
BrpmAuto.log ">>>>>>>>>>>>>> START automation #{name}"
|
81
81
|
start_time = Time.now
|
82
82
|
|
83
|
-
BrpmAuto.log "Loading
|
83
|
+
BrpmAuto.log "Loading module #{modul}#{params["module_version"] ? " #{params["module_version"]}" : ""} and its dependencies..."
|
84
84
|
module_path = BrpmAuto.require_module_from_gem(modul, params["module_version"])
|
85
85
|
BrpmAuto.log "Finished loading the module."
|
86
86
|
|
@@ -114,7 +114,7 @@ class BrpmScriptExecutor
|
|
114
114
|
BrpmAuto.log ">>>>>>>>>>>>>> START resource automation #{name}"
|
115
115
|
start_time = Time.now
|
116
116
|
|
117
|
-
BrpmAuto.log "Loading
|
117
|
+
BrpmAuto.log "Loading module #{modul} and its dependencies..."
|
118
118
|
module_path = BrpmAuto.require_module_from_gem(modul) #TODO: from where should we get the module version of the script?
|
119
119
|
BrpmAuto.log "Finished loading the module."
|
120
120
|
|