feat: support export UE data on task scheduled

This commit is contained in:
zhangsz
2025-04-01 11:44:39 +08:00
parent c12061ce36
commit cfcef54ea8
5 changed files with 256 additions and 157 deletions

View File

@@ -8,15 +8,11 @@ BinDir=/usr/local/omc/bin
case "$1" in
start)
for procName in $ProcListDesc;do
echo -n "Starting $procName process ... "
echo -n "Starting $procName process ... "
systemctl start $procName
if [ $? = 0 ]; then
echo "done"
fi
if [ $? = 0 ]; then
echo "done"
fi
sleep 1
done
;;