virt-login-shell.conf 1.2 KB

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