[c5c522c] | 1 | # Master configuration file for the virt-login-shell program. |
---|
| 2 | # All settings described here are optional - if omitted, sensible |
---|
| 3 | # defaults are used. |
---|
| 4 | |
---|
| 5 | # By default, virt-login-shell will connect you to a container running |
---|
| 6 | # with the /bin/sh program. Modify the shell variable if you want your |
---|
| 7 | # users to run a different shell or a setup container when joining a |
---|
| 8 | # container. Shell commands must be a list of commands/options separated by |
---|
| 9 | # comma and delimited by square brackets. Defaults to: /bin/sh -l. |
---|
| 10 | # Modify and uncomment the following to modify the login shell. |
---|
| 11 | # shell = [ "/bin/sh", "-l" ] |
---|
| 12 | |
---|
| 13 | # allowed_users specifies the user names of all users that are allowed to |
---|
| 14 | # execute virt-login-shell. You can specify the users as a comma |
---|
| 15 | # separated list of usernames or user groups. |
---|
| 16 | # The list of names support glob syntax. |
---|
| 17 | # To disallow all users (default) |
---|
| 18 | # allowed_users = [] |
---|
| 19 | # If you do not specify any names (default) then no one is allowed |
---|
| 20 | # to use this executable. |
---|
| 21 | # To allow fred and joe only |
---|
| 22 | # allowed_users = ["fred", "joe"] |
---|
| 23 | # To allow all users within a specific group prefix the group name with %. |
---|
| 24 | # allowed_users = ["%engineers"] |
---|
| 25 | # To allow all users specify the following |
---|
| 26 | # allowed_users = [ "*" ] |
---|