add sehistory and seweb

This commit is contained in:
2025-04-29 11:50:45 +02:00
parent a36df58081
commit 74684381a6
3 changed files with 47 additions and 2 deletions

View File

@ -316,6 +316,12 @@ def do_sehistory():
do('git pull')
def do_seweb():
"""SE web client"""
if check_repo(home, 'seweb', None, 'master'):
do('git pull')
def do_sea():
"""SEA server scripts"""
if check_repo(home, 'sea', 'gitlab'):
@ -551,7 +557,7 @@ else:
for a in nc_actions:
ncactionfuncs[a] = locals()['do_%s' % a]
actions = ['ssh', 'bin', 'scfg', 'frappy', 'servicemanager', 'sea',
'calcurves', 'sehistory']
'calcurves', 'sehistory', 'seweb']
actionfuncs = {}
for a in actions: