mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-11 04:26:38 +00:00
Container shell now defaults to user `crosvmdev` which will have same UID & GID as outside user. VS Code Remote Containers extension has the same behavior when loading config from devcontainer.json. TEST=all tests pass in container, new files in container have same permission as files created outside. FIXED=b:239476013 Change-Id: Ib3c696509e9ea45edd5f02ff025d9477576ec765 Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/3814094 Auto-Submit: Zihan Chen <zihanchen@google.com> Reviewed-by: Dennis Kempin <denniskempin@google.com> Tested-by: Zihan Chen <zihanchen@google.com> Commit-Queue: Dennis Kempin <denniskempin@google.com>
17 lines
504 B
Bash
Executable file
17 lines
504 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Copyright 2022 The Chromium OS Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
# Ensure there's only 1 instance of setup-user.sh running
|
|
flock /tmp/entrypoint_lock /tools/setup-user.sh
|
|
|
|
# Give KVM device correct permission
|
|
chmod 666 /dev/kvm
|
|
|
|
# Run provided command or interactive shell
|
|
if [[ $# -eq 0 ]]; then
|
|
sudo -u crosvmdev /bin/bash -l
|
|
else
|
|
sudo -u crosvmdev /bin/bash -l -c "$*"
|
|
fi
|