version 2.2409.1

This commit is contained in:
2024-09-04 15:29:31 +08:00
parent 279ce91689
commit 86ae0779ef
4 changed files with 5 additions and 5 deletions

View File

@@ -1,7 +1,7 @@
# Makefile for rest agent project
PROJECT = OMC
VERSION = 2.2408.5
VERSION = 2.2409.1
PLATFORM = amd64
ARMPLATFORM = aarch64
BUILDDIR = ../../build

View File

@@ -1,7 +1,7 @@
# Makefile for OMC-OMC-crontask project
PROJECT = OMC
VERSION = 2.2408.5
VERSION = 2.2409.1
LIBDIR = be.ems/lib
BINNAME = crontask

View File

@@ -44,8 +44,8 @@ func GetFileInfo(dir, suffix string) ([]FileInfo, error) {
FileType: fileType,
FileMode: info.Mode().String(),
LinkCount: 0,
Owner: "N/A",
Group: "N/A",
Owner: "-",
Group: "-",
Size: info.Size(),
ModifiedTime: info.ModTime().Unix(),
FileName: info.Name(),

View File

@@ -20,7 +20,7 @@ case "$1" in
;;
stop)
for procName in $ProcList;do
echo "Stoping $procName process ..."
echo "Stopping $procName process ..."
systemctl stop $procName
done
;;