Added system user for QEMU
This commit is contained in:
parent
9c39707a82
commit
02c310923b
2 changed files with 20 additions and 2 deletions
|
@ -208,6 +208,20 @@ class user::system {
|
|||
require => Group["vsroom"],
|
||||
}
|
||||
|
||||
# QEMU for KVM
|
||||
@group { "qemu":
|
||||
ensure => present,
|
||||
gid => 815,
|
||||
}
|
||||
@user { "qemu":
|
||||
uid => 815,
|
||||
gid => 815,
|
||||
comment => "Service QEMU",
|
||||
home => "/var/empty",
|
||||
shell => "/sbin/nologin",
|
||||
require => Group["qemu"],
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue