Add the reception printer

This commit is contained in:
root 2019-10-29 15:55:58 +02:00
parent f97b90e4f6
commit 1ed45114a8
2 changed files with 14 additions and 0 deletions

View File

@ -60,6 +60,11 @@ object HostGroup "ciscosw" {
assign where "ciscosw" in host.vars.groups assign where "ciscosw" in host.vars.groups
} }
object HostGroup "misc" {
display_name = "Misc devices"
assign where "misc" in host.vars.groups
}
object HostGroup "phones" { object HostGroup "phones" {
display_name = "Telephones" display_name = "Telephones"
assign where "phone" in host.vars.groups assign where "phone" in host.vars.groups

View File

@ -0,0 +1,9 @@
object Host "printer-1" {
import "generic-host"
# reception printer
address = "printer-1"
vars.groups = [ "misc" ]
vars.parent = "receptionsw.openfest.org"
}