Add the video equipment configs

This commit is contained in:
root 2019-10-29 18:16:11 +02:00
parent ded9db7d71
commit 0bfabf70e9
19 changed files with 166 additions and 1 deletions

View File

@ -70,7 +70,10 @@ object HostGroup "overflow" {
assign where "overflow" in host.vars.groups
}
object HostGroup "equipment" {
display_name = "Video team equipment"
assign where "equipment" in host.vars.groups
}
object HostGroup "phones" {
display_name = "Telephones"
assign where "phone" in host.vars.groups

View File

@ -0,0 +1,9 @@
object Host "voc-control-A-1" {
import "generic-host"
# main room laptop/controller [1/2]
address = "control-A-1"
vars.groups = [ "equipment" ]
vars.parent = "vocsw-A.openfest.org"
}

View File

@ -0,0 +1,9 @@
object Host "voc-control-A-2" {
import "generic-host"
# main room laptop/controller [2/2]
address = "control-A-2"
vars.groups = [ "equipment" ]
vars.parent = "vocsw-A.openfest.org"
}

View File

@ -0,0 +1,9 @@
object Host "voc-control-B-1" {
import "generic-host"
# second room laptop/controller [1/2]
address = "control-B-1"
vars.groups = [ "equipment" ]
vars.parent = "vocsw-B.openfest.org"
}

View File

@ -0,0 +1,9 @@
object Host "voc-control-B-2" {
import "generic-host"
# second room laptop/controller [2/2]
address = "control-B-2"
vars.groups = [ "equipment" ]
vars.parent = "vocsw-B.openfest.org"
}

View File

@ -0,0 +1,9 @@
object Host "voc-fbox-camera-B" {
import "generic-host"
# FOSDEM cambox in room B
address = "fbox-camera-B"
vars.groups = [ "equipment" ]
vars.parent = "coresw.openfest.org"
}

View File

@ -0,0 +1,9 @@
object Host "voc-fbox-camera-C" {
import "generic-host"
# FOSDEM cambox in room C
address = "fbox-camera-C"
vars.groups = [ "equipment" ]
vars.parent = "coresw.openfest.org"
}

View File

@ -0,0 +1,9 @@
object Host "voc-fbox-slides-B" {
import "generic-host"
# FOSDEM slidebox in room B
address = "fbox-slides-B"
vars.groups = [ "equipment" ]
vars.parent = "coresw.openfest.org"
}

View File

@ -0,0 +1,9 @@
object Host "voc-fbox-slides-C" {
import "generic-host"
# FOSDEM slidebox in room C
address = "fbox-slides-C"
vars.groups = [ "equipment" ]
vars.parent = "coresw.openfest.org"
}

View File

@ -0,0 +1,9 @@
object Host "voc-icom-A-1" {
import "generic-host"
# RPI intercom receiver 1 - main room [1/3]
address = "icom-A-1"
vars.groups = [ "equipment" ]
vars.parent = "vocsw-A.openfest.org"
}

View File

@ -0,0 +1,9 @@
object Host "voc-icom-A-2" {
import "generic-host"
# RPI intercom receiver 2 - main room [2/3]
address = "icom-A-2"
vars.groups = [ "equipment" ]
vars.parent = "vocsw-A.openfest.org"
}

View File

@ -0,0 +1,9 @@
object Host "voc-icom-A-3" {
import "generic-host"
# RPI intercom receiver 3 - main room [3/3]
address = "icom-A-3"
vars.groups = [ "equipment" ]
vars.parent = "vocsw-A.openfest.org"
}

View File

@ -0,0 +1,9 @@
object Host "voc-icom-B-1" {
import "generic-host"
# RPI intercom receiver 1 - second room [1/3]
address = "icom-B-1"
vars.groups = [ "equipment" ]
vars.parent = "vocsw-B.openfest.org"
}

View File

@ -0,0 +1,9 @@
object Host "voc-icom-B-2" {
import "generic-host"
# RPI intercom receiver 2 - second room [2/3]
address = "icom-B-2"
vars.groups = [ "equipment" ]
vars.parent = "vocsw-B.openfest.org"
}

View File

@ -0,0 +1,9 @@
object Host "voc-icom-B-3" {
import "generic-host"
# RPI intercom receiver 3 - second room [3/3]
address = "icom-B-3"
vars.groups = [ "equipment" ]
vars.parent = "vocsw-B.openfest.org"
}

View File

@ -0,0 +1,9 @@
object Host "voc-scaler-A" {
import "generic-host"
# Atlona scaler in room A
address = "scaler-A"
vars.groups = [ "equipment" ]
vars.parent = "vocsw-A.openfest.org"
}

View File

@ -0,0 +1,9 @@
object Host "voc-stream-A" {
import "generic-host"
# main room streamer
address = "stream-A"
vars.groups = [ "equipment" ]
vars.parent = "vocsw-A.openfest.org"
}

View File

@ -0,0 +1,9 @@
object Host "voc-stream-B" {
import "generic-host"
# second room streamer
address = "stream-B"
vars.groups = [ "equipment" ]
vars.parent = "vocsw-B.openfest.org"
}

View File

@ -0,0 +1,9 @@
object Host "voc-stream-C" {
import "generic-host"
# third room streamer
address = "stream-C"
vars.groups = [ "equipment" ]
vars.parent = "vocsw-C.openfest.org"
}