diff options
author | naturedamends <120284608+naturedamends@users.noreply.github.com> | 2023-08-26 02:39:32 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-26 02:39:32 +0300 |
commit | 0668db5edea56a0d57575db127b793f59b489e7b (patch) | |
tree | 75bb497eb03b763b358c3bdd270aa0041f3e39ca /test/common-utils/scenarios.json | |
parent | 0cf690ee14279d9e7ae5e1308950d6067d3aba81 (diff) |
Commonutils: chown: cannot access '/home/vscode/.zshrc': No such file or directory (#662)feature_common-utils_2.1.2
* Update main.sh
* Update devcontainer-feature.json
* Test install as non root user.
---------
Co-authored-by: Samruddhi Khandale <skhandale@microsoft.com>
Diffstat (limited to 'test/common-utils/scenarios.json')
-rw-r--r-- | test/common-utils/scenarios.json | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/test/common-utils/scenarios.json b/test/common-utils/scenarios.json index 904a47b..d7b296d 100644 --- a/test/common-utils/scenarios.json +++ b/test/common-utils/scenarios.json @@ -115,10 +115,20 @@ } } }, - "configure_zsh_no_template": { + "configure_zsh_no_template_second_step": { "image": "mcr.microsoft.com/devcontainers/base:ubuntu", - "postCreateCommand": "echo alias fnomockalias=testingmock >> /root/.zshrc", - "remoteUser": "root", + "postCreateCommand": "echo alias fnomockalias=testingmock >> /home/devcontainer/.zshrc", + "remoteUser": "devcontainer", + "features": { + "common-utils": { + "installZsh": true, + "installOhMyZshConfig": false + } + } + }, + "configure_zsh_no_template_first_step": { + "image": "debian:bullseye", + "remoteUser": "devcontainer", "features": { "common-utils": { "installZsh": true, |