Dplacement des scripts tv dans le nfs.

darcs-hash:20050822155419-41617-aab8a29eddc92fb3add940af6d04115480dc8454.gz
This commit is contained in:
pauget 2005-08-22 17:54:19 +02:00
parent 9ce691481c
commit 4aad64077e
3 changed files with 585 additions and 0 deletions

33
tv/sat_conf.py Executable file
View file

@ -0,0 +1,33 @@
#! /usr/bin/env python
# -*- coding: iso8859-15 -*-
""" Défini les transpondeurs à associer à chacune des cartes """
from sat_base import *
from socket import gethostname
host = gethostname()
conf = []
if host == 'canard' :
conf = [ TNT_R4_498000(0) ,
Hotbird_12476(1) ,
Hotbird_10911(2) ,
Hotbird_12597(3) ,
Hotbird_12577(4)
]
if host == 'lapin' :
conf = [ Hotbird_11727(0) ,
Hotbird_11604(1) ,
TNT_R1_586000(2) ,
TNT_R6_562000(3) ,
TNT_R2_474000(4) ,
TNT_R3_522000(5) ]
if host == 'oie' :
conf = [ Hotbird_12245(0) ,
Hotbird_11137(1) ,
Hotbird_10873(2) ,
Hotbird_11304(3) ,
Hotbird_11623(4) ]