Add the overflow Raspberry Pis
This commit is contained in:
parent
1ed45114a8
commit
c4aa315561
|
@ -65,6 +65,12 @@ object HostGroup "misc" {
|
||||||
assign where "misc" in host.vars.groups
|
assign where "misc" in host.vars.groups
|
||||||
}
|
}
|
||||||
|
|
||||||
|
object HostGroup "overflow" {
|
||||||
|
display_name = "Overflow RPIs"
|
||||||
|
assign where "overflow" 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
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
object Host "rpi-tv-1" {
|
||||||
|
import "generic-host"
|
||||||
|
|
||||||
|
# Overflow TV-1
|
||||||
|
address = "tv-1"
|
||||||
|
vars.groups = [ "overflow" ]
|
||||||
|
|
||||||
|
vars.parent = "teamsw.openfest.org"
|
||||||
|
}
|
|
@ -0,0 +1,9 @@
|
||||||
|
object Host "rpi-tv-2" {
|
||||||
|
import "generic-host"
|
||||||
|
|
||||||
|
# Overflow TV-2
|
||||||
|
address = "tv-2"
|
||||||
|
vars.groups = [ "overflow" ]
|
||||||
|
|
||||||
|
vars.parent = "teamsw.openfest.org"
|
||||||
|
}
|
Loading…
Reference in New Issue