mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-03 20:01:16 +00:00
18a10ddc16
Currently the shell must be looked up from the config setting in /etc/libvirt/virt-login-shell.conf. This is inflexible if there are containers where different users need different shells. Add add a new 'auto-shell' config parameter which instructs us to query the containers' /etc/passwd for the shell to be exec'd. Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
49 lines
1.8 KiB
Plaintext
49 lines
1.8 KiB
Plaintext
# Master configuration file for the virt-login-shell program.
|
|
# All settings described here are optional - if omitted, sensible
|
|
# defaults are used.
|
|
|
|
# By default, virt-login-shell will connect you to a container running
|
|
# with the /bin/sh program. Modify the shell variable if you want your
|
|
# users to run a different shell or a setup container when joining a
|
|
# container.
|
|
#
|
|
# This can either be just the path to a shell binary:
|
|
#
|
|
# shell = "/bin/bash"
|
|
#
|
|
# Or can be the path and extra arguments
|
|
#
|
|
# shell = [ "/bin/bash", "--posix" ]
|
|
#
|
|
# Note there is no need to pass a '--login' / '-l' argument since
|
|
# virt-login-shell will always request a login shell
|
|
|
|
# Normally virt-login-shell will always use the shell identified
|
|
# by the 'shell' configuration setting above. If the container
|
|
# is running a full OS, it might be desirable to allow the choice
|
|
# of shell to be delegated to the owner of the shell, by querying
|
|
# the /etc/passwd file inside the container
|
|
#
|
|
# To allow for that, uncomment the following:
|
|
# auto_shell = 1
|
|
#
|
|
# NB, this should /not/ be used if any container is sharing the
|
|
# host filesystem /etc, as this would cause virt-login-shell to
|
|
# look at the host's /etc/passwd finding itself as the listed
|
|
# shell. Hilarious recursion would then ensue.
|
|
|
|
# allowed_users specifies the user names of all users that are allowed to
|
|
# execute virt-login-shell. You can specify the users as a comma
|
|
# separated list of usernames or user groups.
|
|
# The list of names support glob syntax.
|
|
# To disallow all users (default)
|
|
# allowed_users = []
|
|
# If you do not specify any names (default) then no one is allowed
|
|
# to use this executable.
|
|
# To allow fred and joe only
|
|
# allowed_users = ["fred", "joe"]
|
|
# To allow all users within a specific group prefix the group name with %.
|
|
# allowed_users = ["%engineers"]
|
|
# To allow all users specify the following
|
|
# allowed_users = [ "*" ]
|