Advertisement
Guest User

Untitled

a guest
Jul 24th, 2013
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. # The user for QEMU processes run by the system instance. It can be
  2. # specified as a user name or as a user id. The qemu driver will try to
  3. # parse this value first as a name and then, if the name doesn't exist,
  4. # as a user id.
  5. #
  6. # Since a sequence of digits is a valid user name, a leading plus sign
  7. # can be used to ensure that a user id will not be interpreted as a user
  8. # name.
  9. #
  10. # Some examples of valid values are:
  11. #
  12. # user = "qemu" # A user named "qemu"
  13. # user = "+0" # Super user (uid=0)
  14. # user = "100" # A user named "100" or a user with uid=100
  15. #
  16. #user = "root"
  17.  
  18. # The group for QEMU processes run by the system instance. It can be
  19. # specified in a similar way to user.
  20. #group = "root"
  21.  
  22. # Whether libvirt should dynamically change file ownership
  23. # to match the configured user/group above. Defaults to 1.
  24. # Set to 0 to disable file ownership changes.
  25. #dynamic_ownership = 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement