{"id":13764151,"url":"https://github.com/yaronsumel/grapes","last_synced_at":"2026-02-03T20:51:38.129Z","repository":{"id":57497004,"uuid":"67125409","full_name":"yaronsumel/grapes","owner":"yaronsumel","description":"easy way to distribute commands over ssh.","archived":false,"fork":false,"pushed_at":"2025-05-05T21:30:30.000Z","size":68,"stargazers_count":170,"open_issues_count":2,"forks_count":10,"subscribers_count":7,"default_branch":"master","last_synced_at":"2025-05-10T17:41:38.695Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/yaronsumel.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2016-09-01T11:28:47.000Z","updated_at":"2025-04-18T11:13:49.000Z","dependencies_parsed_at":"2022-09-03T23:50:41.543Z","dependency_job_id":"cbf8f56f-d717-4aca-a1b0-2dcbe28dc84e","html_url":"https://github.com/yaronsumel/grapes","commit_stats":null,"previous_names":["yaronsumel/grape"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/yaronsumel/grapes","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yaronsumel%2Fgrapes","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yaronsumel%2Fgrapes/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yaronsumel%2Fgrapes/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yaronsumel%2Fgrapes/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yaronsumel","download_url":"https://codeload.github.com/yaronsumel/grapes/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yaronsumel%2Fgrapes/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29056982,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-03T20:13:53.544Z","status":"ssl_error","status_checked_at":"2026-02-03T20:13:40.507Z","response_time":96,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-03T15:01:16.793Z","updated_at":"2026-02-03T20:51:38.115Z","avatar_url":"https://github.com/yaronsumel.png","language":"Go","funding_links":[],"categories":["Software Packages","Go Tools","软件包","Go 工具","軟件包","DevOps Tools"],"sub_categories":["DevOps Tools","DevOps 工具","代码分析","DevOps工具","devops 工具"],"readme":"# grapes [![Go Report Card](https://goreportcard.com/badge/github.com/yaronsumel/grapes)](https://goreportcard.com/report/github.com/yaronsumel/grapes) [![Build Status](https://travis-ci.org/yaronsumel/grapes.svg?branch=master)](https://travis-ci.org/yaronsumel/grapes) [![Build status](https://ci.appveyor.com/api/projects/status/fnepp81rdi8prawn/branch/master?svg=true)](https://ci.appveyor.com/project/yaronsumel/grapes/branch/master) [![GoDoc](https://godoc.org/github.com/yaronsumel/grapes?status.svg)](https://godoc.org/github.com/yaronsumel/grapes)\n\ngrapes is lightweight tool designed to distribute commands over ssh with ease.\n\n### Update (25/04/2019)\n \nHandshake validation is now in place in order to fix `CVE-2017-3204`, The validation will use the built-in fingerprint list `~/.ssh/known_hosts` as default. \n \nIn order to add your ssh server fingerprint to `known_hosts` run the following:\n\n    $ ssh-keyscan -H YOURHOST.COM \u003e\u003e ~/.ssh/known_hosts\n\n### Run with docker \n\n```bash\ndocker run -v ~/.grapes.yml:/root/.grapes.yml -v ~/.ssh/id_rsa:/root/.ssh/id_rsa -it docker.pkg.github.com/yaronsumel/grapes/grapes:0.3.0\n```\n\n### Installation ###\n\n  Run (golang v1.10+ required):\n\n    $ export GO111MODULE=on; go get -u github.com/yaronsumel/grapes\n\n### Usage ###\n\n Example:\n\n    $ grapes -c config.yml -i ~/.ssh/id_rsa -s prod -cmd whats_up --async\n\n* use the --help flag for full usage output.\n\n### Config ###\n\nconfig structure (YAML):\n\n ```\nversion: 1\nservers:\n  prod :\n      - name : \"prod server #1\"\n        host : \"prod.example.com:22\"\n        user : \"ubuntu\"\n  staging :\n      - name : \"staging server #1\"\n        host : \"staging.example.com:22\"\n        user : \"ubuntu\"\n      - name : \"staging server #2\"\n        host : \"staging.example.com:23\"\n        user : \"ubuntu\"\ncommands:\n  whats_up :\n      - \"ls -al /tmp\"\n      - \"date\"\n  date :\n      - \"date\"\n ```\n \n\u003e ##### Written and Maintained by [@YaronSumel](https://twitter.com/yaronsumel) #####\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyaronsumel%2Fgrapes","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyaronsumel%2Fgrapes","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyaronsumel%2Fgrapes/lists"}