brpm_module_brpm 0.1.12 → 0.1.13
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/config.yml +1 -1
- data/lib/brpm_rest_client.rb +4 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
NTRmYTc4MTgxMWU5NDAyNDhhMTQ0NDFiMDYyZDc5ZDcxMzc2MDBhNA==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
ZmIxNWIxZTRlZGQ4NDg4NDkzNDExMzNlMDBkYmI0ZWI1ZDVjZmZhYw==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
YjI2ZDE0NDkyN2MzOTAyYmYzODRmMjQzNDI0MThmZWFkODg4MzFiM2UyMDQ5
|
10
|
+
ODI0Y2ZkNTAyODRlMjdhNGIxMjAxNjdiNGZkYjIyZGIzMzJlMjJlYjNmYWE2
|
11
|
+
Yjk2MzhkMjQwNTJlMDg4N2ZiNzVhZDY5MzJhNzc3NzZjM2Q4Mzc=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
YTcyN2MzMjc2ZDU0MGJkOGI1ZTE4MzNmNThlNGJjMTU5ODdiMTM5YWFlZDZk
|
14
|
+
YTEyODYyOWYzZTVjNjk5MGUwOWRhMjRhOTJmYWZmM2RkOTA2ZTRmYzMzMGQ5
|
15
|
+
YTc0ZjE5MjI1ZmZmMzE4ZDRkMjNjNDcyYjE1MThjMDE3MTAwOTU=
|
data/config.yml
CHANGED
data/lib/brpm_rest_client.rb
CHANGED
@@ -1511,13 +1511,15 @@ class BrpmRestClient
|
|
1511
1511
|
|
1512
1512
|
if script_already_exists
|
1513
1513
|
BrpmAuto.log "Updating the script..."
|
1514
|
-
update_script_from_hash(script)
|
1514
|
+
script = update_script_from_hash(script)
|
1515
1515
|
BrpmAuto.log "Script is updated."
|
1516
1516
|
else
|
1517
1517
|
BrpmAuto.log "Creating the script..."
|
1518
|
-
create_script_from_hash(script)
|
1518
|
+
script = create_script_from_hash(script)
|
1519
1519
|
BrpmAuto.log "Script is created."
|
1520
1520
|
end
|
1521
|
+
|
1522
|
+
script
|
1521
1523
|
end
|
1522
1524
|
|
1523
1525
|
def sync_attributes(existing_attributes, updated_attributes)
|