diff options
author | Chuck Lantz <clantz@microsoft.com> | 2022-12-16 20:47:21 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-16 20:47:21 +0300 |
commit | bf058dc49492b3a102a28ed25764a517fcebfb40 (patch) | |
tree | 6ccc831064fab57ea6fa2f0c530202ac0d73ff08 /src/common-utils/devcontainer-feature.json | |
parent | 7fa90110d762797cc0b1c2fe8fcc028c9b813d56 (diff) |
Multi-distro support for common script, refactor, fixes (#326)
Diffstat (limited to 'src/common-utils/devcontainer-feature.json')
-rw-r--r-- | src/common-utils/devcontainer-feature.json | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/src/common-utils/devcontainer-feature.json b/src/common-utils/devcontainer-feature.json index d2a97d6..05bf067 100644 --- a/src/common-utils/devcontainer-feature.json +++ b/src/common-utils/devcontainer-feature.json @@ -1,7 +1,7 @@ { "id": "common-utils", - "version": "1.2.0", - "name": "Common Debian Utilities", + "version": "2.0.0", + "name": "Common Utilities", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/common-utils", "description": "Installs a set of common command line utilities, Oh My Zsh!, and sets up a non-root user.", "options": { @@ -28,36 +28,37 @@ "username": { "type": "string", "proposals": [ + "devcontainer", "vscode", "codespace", "none", "automatic" ], "default": "automatic", - "description": "Enter name of non-root user to configure or none to skip" + "description": "Enter name of a non-root user to configure or none to skip" }, - "uid": { + "userUid": { "type": "string", "proposals": [ "1000", "automatic" ], "default": "automatic", - "description": "Enter uid for non-root user" + "description": "Enter UID for non-root user" }, - "gid": { + "userGid": { "type": "string", "proposals": [ "1000", "automatic" ], "default": "automatic", - "description": "Enter gid for non-root user" + "description": "Enter GID for non-root user" }, "nonFreePackages": { "type": "boolean", "default": false, - "description": "Add packages from non-free Debian repository?" + "description": "Add packages from non-free Debian repository? (Debian only)" } } } |