update getsestuff (feeder)

+ replace 'service' by 'serv' in cfg/*.cfg
This commit is contained in:
2025-05-02 14:33:15 +02:00
committed by Markus Zolliker
parent 74c4e1ec92
commit 645a1e1198
2 changed files with 4 additions and 4 deletions

View File

@ -310,7 +310,7 @@ def do_servicemanager():
do('git pull')
def do_sehistory():
def do_feeder():
"""history feeder"""
if check_repo(home, 'sehistory', None, 'master'):
do('git pull')
@ -465,7 +465,7 @@ def do_bin():
chdir(home)
if not exists('bin'):
do('mkdir -p bin')
pgms = ['frappy', 'sea', 'seweb', 'sehistory']
pgms = ['frappy', 'sea', 'seweb', 'feeder']
if nicosroot:
executable = f'{nicosenv}/bin/python3'
else:
@ -557,7 +557,7 @@ else:
for a in nc_actions:
ncactionfuncs[a] = locals()['do_%s' % a]
actions = ['ssh', 'bin', 'scfg', 'frappy', 'servicemanager', 'sea',
'calcurves', 'sehistory', 'seweb']
'calcurves', 'feeder', 'seweb']
actionfuncs = {}
for a in actions: