메인 브런치로 이동

This commit is contained in:
정훈 변
2024-09-09 12:25:26 +09:00
parent 67fcdf305d
commit 32440c8d64
71 changed files with 5241 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
#!/bin/sh
PRODUCT_NAME=exemONE
MODULE_NAME=exem-host-agent
VERSION=1.2.2
echo ${PRODUCT_NAME} ${MODULE_NAME} ver ${VERSION}

View File

@@ -0,0 +1,3 @@
#!/bin/sh
service exem-host-agent start

View File

@@ -0,0 +1,3 @@
#!/bin/sh
service exem-host-agent stop

View File

@@ -0,0 +1,25 @@
#!/bin/sh
SYSTEMCTL=$(which systemctl 2> /dev/null)
SERVICE=$(which service 2> /dev/null)
CHKCONFIG=$(which chkconfig 2> /dev/null)
if [ -n "${SYSTEMCTL}" ]; then
systemctl stop exem-host-agent
systemctl disable exem-host-agent
systemctl daemon-reload
if [ -e "/etc/systemd/system/exem-host-agent.service" ]; then
rm -f /etc/systemd/system/exem-host-agent.service
systemctl daemon-reload
fi
if [ -e "/etc/systemd/system/default.target.wants/exem-host-agent.service" ]; then
rm -f /etc/systemd/system/default.target.wants/exem-host-agent.service
systemctl daemon-reload
fi
echo "exem-host-agent is disabled"
fi

View File

@@ -0,0 +1,3 @@
#!/bin/sh
sudo systemctl start exem-host-agent