takeltau 0.40.9 → 0.40.11
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/takeltau/info/status/bar.rb +1 -1
- data/lib/takeltau/info/status/ssh.rb +4 -4
- data/lib/takeltau/mutagen/check/daemon.rb +4 -4
- data/lib/takeltau/version +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: 36e5345fd6b55be001f841d4181d01e1efcc47e35ad6ea5650536dfd1ef49321
|
|
4
|
+
data.tar.gz: 94db651e1825390239623b0c803fa8c903af90949b7e0f6ca10e173ba0c2ec9f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8e5c61d7cfef9f13924fb147ecce6a0b4615ea85ec98505f720cfb765f975b1f08d66c4eb1284e755696b9b66e3b2b66e88e319f0a36a05a02131b6fbf69eaff
|
|
7
|
+
data.tar.gz: 676182ed7f62baa2e535a3c2499cd3c8b920dfe3c1210a4947e0264db09492327c9c4cfedcf038231856674e49facd5253788b57ce3822aecdcd66b76674466d
|
|
@@ -16,13 +16,13 @@ module InfoStatusSSH
|
|
|
16
16
|
return false
|
|
17
17
|
end
|
|
18
18
|
|
|
19
|
-
unless
|
|
20
|
-
log.error '
|
|
19
|
+
unless _info_status_ssh_keys
|
|
20
|
+
log.error 'ssh keys are not available'
|
|
21
21
|
return false
|
|
22
22
|
end
|
|
23
23
|
|
|
24
|
-
unless
|
|
25
|
-
log.error 'ssh
|
|
24
|
+
unless _file_exists? gpg_ssh_socket
|
|
25
|
+
log.error 'gpg ssh socket is not available'
|
|
26
26
|
return false
|
|
27
27
|
end
|
|
28
28
|
|
|
@@ -25,13 +25,13 @@ module MutagenCheckDaemon
|
|
|
25
25
|
return true
|
|
26
26
|
end
|
|
27
27
|
|
|
28
|
-
unless
|
|
29
|
-
log.error '
|
|
28
|
+
unless _mutagen_check_daemon_host_connection
|
|
29
|
+
log.error 'A mutagen host connection is not available'
|
|
30
30
|
return false
|
|
31
31
|
end
|
|
32
32
|
|
|
33
|
-
unless
|
|
34
|
-
log.error '
|
|
33
|
+
unless _file_exists? config.active['mutagen_socket_path_mutagen_container']
|
|
34
|
+
log.error 'The mutagen socket path in the container is not available'
|
|
35
35
|
return false
|
|
36
36
|
end
|
|
37
37
|
|
data/lib/takeltau/version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.40.
|
|
1
|
+
0.40.11
|