prometheus-splash 0.4.1 → 0.4.2
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/CHANGELOG.md +13 -0
- data/bin/splash +1 -1
- data/lib/splash/config/setup.rb +2 -2
- data/lib/splash/constants.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: 03e2a5244e871ad29fe3ecaf1bea1cc6a77556fc1a36f740f707d10b4093f4f0
|
|
4
|
+
data.tar.gz: 8197fca0cd099e6d7dec6159a949fa318f4695ca44eae49a48d9ca78a2a2f5cb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 91f9f7b5620b85a49366e9b869a764ecb38effdf0f5fb573032976a87060e985bf42faf59d7f482c6e9305b0c769d7af684b096dd4cedc5028f319e243f2fe09
|
|
7
|
+
data.tar.gz: 606b0ff99c5f52fee9c2ea61d88dce105de43f533f2a2b336ecaee6d1027924759137fc2ec56bdaf04cc1f42fdc4622efde3b317f9e084db0c979a9672923f93
|
data/CHANGELOG.md
CHANGED
|
@@ -24,3 +24,16 @@
|
|
|
24
24
|
* CLI colors and logger CLI /dual #8
|
|
25
25
|
* Log for splash daemon #6
|
|
26
26
|
* Schedule command via daemon execute and --hostname #11
|
|
27
|
+
|
|
28
|
+
## V 0.4.1 2020/04/15
|
|
29
|
+
|
|
30
|
+
### FIX :
|
|
31
|
+
|
|
32
|
+
* Unix rights on trace,stores,pid path to 644 => 755 #19
|
|
33
|
+
|
|
34
|
+
## V0.4.2 2020/04/15
|
|
35
|
+
|
|
36
|
+
### FIX :
|
|
37
|
+
|
|
38
|
+
* REOPEN : Unix rights on trace,stores,pid path to 644 => 755 #19
|
|
39
|
+
* ruby 2.5 error with w-deprecated on sheebang, removing #20
|
data/bin/splash
CHANGED
data/lib/splash/config/setup.rb
CHANGED
|
@@ -38,7 +38,7 @@ module Splash
|
|
|
38
38
|
end
|
|
39
39
|
|
|
40
40
|
target = "Creating/Checking pid file path : #{config[:pid_path]}"
|
|
41
|
-
if make_folder path: config[:pid_path], mode: "
|
|
41
|
+
if make_folder path: config[:pid_path], mode: "755", owner: config.user_root, group: config.group_root then
|
|
42
42
|
log.ok target
|
|
43
43
|
else
|
|
44
44
|
full_res =+ 1
|
|
@@ -46,7 +46,7 @@ module Splash
|
|
|
46
46
|
end
|
|
47
47
|
|
|
48
48
|
target = "Creating/Checking trace file path : #{config[:trace_path]} : "
|
|
49
|
-
if make_folder path: config[:trace_path], mode: "
|
|
49
|
+
if make_folder path: config[:trace_path], mode: "755", owner: config.user_root, group: config.group_root then
|
|
50
50
|
log.ok target
|
|
51
51
|
else
|
|
52
52
|
full_res =+ 1
|
data/lib/splash/constants.rb
CHANGED