Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/frzifus/just-ask
A simple ssh-askpass replacement
https://github.com/frzifus/just-ask
cross-platform golang ssh-askpass
Last synced: 3 months ago
JSON representation
A simple ssh-askpass replacement
- Host: GitHub
- URL: https://github.com/frzifus/just-ask
- Owner: frzifus
- License: bsd-2-clause
- Created: 2018-05-22T00:10:45.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-05-15T08:48:41.000Z (8 months ago)
- Last Synced: 2024-10-15T02:51:50.146Z (3 months ago)
- Topics: cross-platform, golang, ssh-askpass
- Language: Go
- Homepage: https://git.klimlive.de/frzifus/just-ask
- Size: 920 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# just-ask
#### Description
-------
Just-ask is a simple ssh-askpass tool. It's for confirming or
denying the use of an ssh key via ssh-agent. Also it's available for all
platforms that golang supports.#### Build
```bash
go get -v github.com:frzifus/just-ask
cd $GOPATH/src/git.klimlive.de/frzifus/just-ask
# linux64
GOOS=linux GOARCH=amd64 go build
# arm
GOOS=linux GOARCH=arm go build
# win64
GOOS=windows GOARCH=amd64 go build
```#### Install and uninstall (Linux)
**Execute as privileged user**
```bash
# install
$ cp just-ask /usr/local/bin/
$ pushd /usr/local/bin
$ ln -s ssh-askpass /usr/local/bin/just-ask
$ popd# uninstall
$ rm /usr/local/bin/just-ask
$ unlink /usr/local/bin ssh-askpass
```