mirror of
https://github.com/IceWhaleTech/CasaOS.git
synced 2025-06-15 21:45:31 +00:00
* add send notify function * add shell script * add system notiry * remove disk and test common package * update http status * add share function to common * remove temp path * remove /DATA directory initialization - moved to local-storage (#578) * update goreleaser configuration * wip * change service type to notify for systemd so its status is OK only when service is initialized successfully * update CasaOS-Common to fix runtime error * wip * add send notify function * add shell script * add system notiry * remove disk and test common package * update http status * add share function to common * remove temp path * remove /DATA directory initialization - moved to local-storage (#578) * update goreleaser configuration * wip * change service type to notify for systemd so its status is OK only when service is initialized successfully * update CasaOS-Common to fix runtime error * wip * wip * wip * wip * wip * Utilization interface to supplement disk information * fix upload file * wip * wip * add update url * wip * wip * add change log * update changelog Co-authored-by: LinkLeong <a624669980@163.com>
41 lines
987 B
Bash
41 lines
987 B
Bash
#!/bin/bash
|
|
###
|
|
# @Author: LinkLeong link@icewhale.org
|
|
# @Date: 2022-08-25 11:41:22
|
|
# @LastEditors: LinkLeong
|
|
# @LastEditTime: 2022-08-31 17:54:17
|
|
# @FilePath: /CasaOS/build/scripts/setup/service.d/casaos/debian/setup-casaos.sh
|
|
# @Description:
|
|
|
|
# @Website: https://www.casaos.io
|
|
# Copyright (c) 2022 by icewhale, All Rights Reserved.
|
|
###
|
|
|
|
set -e
|
|
|
|
APP_NAME="casaos"
|
|
|
|
# copy config files
|
|
CONF_PATH=/etc/casaos
|
|
OLD_CONF_PATH=/etc/casaos.conf
|
|
CONF_FILE=${CONF_PATH}/${APP_NAME}.conf
|
|
CONF_FILE_SAMPLE=${CONF_PATH}/${APP_NAME}.conf.sample
|
|
|
|
|
|
if [ -f "${OLD_CONF_PATH}" ]; then
|
|
echo "copy old conf"
|
|
cp "${OLD_CONF_PATH}" "${CONF_FILE}"
|
|
fi
|
|
if [ ! -f "${CONF_FILE}" ]; then
|
|
echo "Initializing config file..."
|
|
cp -v "${CONF_FILE_SAMPLE}" "${CONF_FILE}"
|
|
fi
|
|
|
|
rm -rf /etc/systemd/system/casaos.service # remove old service file
|
|
|
|
systemctl daemon-reload
|
|
|
|
# enable service (without starting)
|
|
echo "Enabling service..."
|
|
systemctl enable --force --no-ask-password "${APP_NAME}.service"
|