diff options
author | Jacob Woffenden <jacob@woffenden.io> | 2022-12-10 01:08:20 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-10 01:08:20 +0300 |
commit | aae9de7ebc96170ddbaf8996d8ee2289176000aa (patch) | |
tree | 1ab29f71f3ce51f228a3b98584bd02ffa53aef0a /src/common-utils/devcontainer-feature.json | |
parent | e28358e33b98998e00c2c62d5d561626d96bed24 (diff) |
Change default shell if installing ZSH (#325)
* Added new option to configure zsh as default shell
Added test scenario
Bumped feature version
* Update test/common-utils/scenarios.json
Co-authored-by: Samruddhi Khandale <skhandale@microsoft.com>
* Update src/common-utils/devcontainer-feature.json
Co-authored-by: Samruddhi Khandale <skhandale@microsoft.com>
* Update test/common-utils/configure_zsh_as_default_shell.sh
Co-authored-by: Samruddhi Khandale <skhandale@microsoft.com>
Co-authored-by: Samruddhi Khandale <skhandale@microsoft.com>
Diffstat (limited to 'src/common-utils/devcontainer-feature.json')
-rw-r--r-- | src/common-utils/devcontainer-feature.json | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/common-utils/devcontainer-feature.json b/src/common-utils/devcontainer-feature.json index 812e5e9..d2a97d6 100644 --- a/src/common-utils/devcontainer-feature.json +++ b/src/common-utils/devcontainer-feature.json @@ -1,6 +1,6 @@ { "id": "common-utils", - "version": "1.1.6", + "version": "1.2.0", "name": "Common Debian 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.", @@ -10,6 +10,11 @@ "default": true, "description": "Install ZSH?" }, + "configureZshAsDefaultShell": { + "type": "boolean", + "default": false, + "description": "Change default shell to ZSH?" + }, "installOhMyZsh": { "type": "boolean", "default": true, |