takelage 0.26.3 → 0.26.4
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/README.md +6 -0
- data/lib/takelage/info/status/ssh.rb +1 -8
- data/lib/takelage/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: 8bf925e231daeab5d3930c78e761cafef36cf9ae428938df47d32459f0d4b001
|
|
4
|
+
data.tar.gz: 3485b85dfdeba7f4da4a67426c2a7ad61a14f9b81118e1305d163880757f5436
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3b6804918d7e81e8d93412b162168bc0617e6bf89443aa86476bfbcf152b33a292f4bf9388848a4390bf5968049d092ca01608048c1b0020e2d270905c20a7d5
|
|
7
|
+
data.tar.gz: aafc982404aceecd7f241991dbcb67194ddacda3d088849acfa0f56f7604d03b20c0a07360f5f3581d3d702f1ea4b1de0ece0afef95f3e39d3d4839f60e57852
|
data/README.md
CHANGED
|
@@ -86,6 +86,11 @@ tau [info project active](features/cucumber/features/info/info.project.active.fe
|
|
|
86
86
|
tau [info project dir](features/cucumber/features/info/info.project.dir.feature) | Print project root directory
|
|
87
87
|
tau [info project main](features/cucumber/features/info/info.project.main.feature) | Print main project info
|
|
88
88
|
tau [info project private](features/cucumber/features/info/info.project.private.feature) | Print private project info
|
|
89
|
+
tau [info status git](features/cucumber/features/info/info.status.git.feature) | Check git status info
|
|
90
|
+
tau [info status gopass](features/cucumber/features/info/info.status.gopass.feature) | Check gopass status info
|
|
91
|
+
tau [info status gpg](features/cucumber/features/info/info.status.gpg.feature) | Check gpg status info
|
|
92
|
+
tau [info status header](features/cucumber/features/info/info.status.header.feature) | Print status info header
|
|
93
|
+
tau [info status ssh](features/cucumber/features/info/info.status.ssh.feature) | Check ssh status info
|
|
89
94
|
tau [self config active](features/cucumber/features/self/self.config.active.feature) | Print active takelage configuration
|
|
90
95
|
tau [self config default](features/cucumber/features/self/self.config.default.feature) | Print takelage default configuration
|
|
91
96
|
tau [self config home](features/cucumber/features/self/self.config.home.feature) | Print takelage home config file configuration
|
|
@@ -102,6 +107,7 @@ tau project | Alias for tau [info project active](features/cucumber/features/inf
|
|
|
102
107
|
tau prune | Alias for tau [docker container prune](features/cucumber/features/docker/docker.container.prune.feature)
|
|
103
108
|
tau pull | Alias for tau [bit clipboard pull](features/cucumber/features/bit/bit.clipboard.pull.feature)
|
|
104
109
|
tau push | Alias for tau [bit clipboard push](features/cucumber/features/bit/bit.clipboard.push.feature)
|
|
110
|
+
tau status | Alias for tau [docker info status header](features/cucumber/features/info/info.status.header.feature)
|
|
105
111
|
tau update | Alias for tau [docker image update](features/cucumber/features/docker/docker.image.update.feature)
|
|
106
112
|
tau version | Alias for tau [self version](features/cucumber/features/self/self.version.feature)
|
|
107
113
|
|
|
@@ -8,14 +8,7 @@ module InfoStatusSSH
|
|
|
8
8
|
def info_status_ssh
|
|
9
9
|
log.debug 'Check ssh status'
|
|
10
10
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
unless ENV['SSH_AUTH_SOCK'] == ssh_socket_path
|
|
14
|
-
log.error 'gpg ssh socket is misconfigured'
|
|
15
|
-
return false
|
|
16
|
-
end
|
|
17
|
-
|
|
18
|
-
unless _file_exists? ssh_socket_path
|
|
11
|
+
unless _file_exists? _socket_get_agent_ssh_socket_path
|
|
19
12
|
log.error 'gpg ssh socket is not available'
|
|
20
13
|
return false
|
|
21
14
|
end
|
data/lib/takelage/version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.26.
|
|
1
|
+
0.26.4
|