From ff2bd13b3529c3465f8e6857088490a1a29b782b Mon Sep 17 00:00:00 2001 From: Brandon Hawi Date: Mon, 14 Jul 2025 02:59:36 +0000 Subject: [PATCH] fix: clean up `sshpass` --- src/sshpass/README.md | 11 +++-------- src/sshpass/devcontainer-feature.json | 19 ++----------------- 2 files changed, 5 insertions(+), 25 deletions(-) diff --git a/src/sshpass/README.md b/src/sshpass/README.md index bc99217..102cb76 100644 --- a/src/sshpass/README.md +++ b/src/sshpass/README.md @@ -1,25 +1,20 @@ # sshpass (sshpass) -Installs the GitHub CLI. Auto-detects latest version and installs needed dependencies. +`sshpass` is a tool for non-interactivly performing password authentication with SSH's so called "interactive keyboard password authentication". ## Example Usage ```json "features": { - "ghcr.io/hspaans/devcontainer-features/sshpass:1": {} + "ghcr.io/devcontainer-features/sshpass:1": {} } ``` -## Options -| Options Id | Description | Type | Default Value | -|-----|-----|-----|-----| -| version | Select version of the GitHub CLI, if not latest. | string | latest | -| installDirectlyFromGitHubRelease | - | boolean | true | --- -_Note: This file was auto-generated from the [devcontainer-feature.json](https://github.com/hspaans/devcontainer-features/blob/main/src/sshpass/devcontainer-feature.json). Add additional notes to a `NOTES.md`._ +_Note: This file was auto-generated from the [devcontainer-feature.json](devcontainer-feature.json). Add additional notes to a `NOTES.md`._ diff --git a/src/sshpass/devcontainer-feature.json b/src/sshpass/devcontainer-feature.json index b72933b..c8969ff 100644 --- a/src/sshpass/devcontainer-feature.json +++ b/src/sshpass/devcontainer-feature.json @@ -2,24 +2,9 @@ "id": "sshpass", "version": "1.0.1", "name": "sshpass", - "documentationURL": "https://github.com/hspaans/devcontainer-features/tree/master/src/github-cli", + "documentationURL": "https://github.com/hspaans/devcontainer-features/tree/master/src/sshpass", "licenseURL": "http://github.com/hspaans/devcontainer-features/tree/master/LICENSE", - "description": "Installs the GitHub CLI. Auto-detects latest version and installs needed dependencies.", - "options": { - "version": { - "type": "string", - "proposals": [ - "latest", - "none" - ], - "default": "latest", - "description": "Select version of the GitHub CLI, if not latest." - }, - "installDirectlyFromGitHubRelease": { - "type": "boolean", - "default": true - } - }, + "description": "`sshpass` is a tool for non-interactivly performing password authentication with SSH's so called \"interactive keyboard password authentication\".", "installsAfter": [ "ghcr.io/devcontainers/features/common-utils" ]