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>
47 lines
943 B
Bash
Executable File
47 lines
943 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
readonly APP_NAME_SHORT=casaos
|
|
|
|
__get_setup_script_directory_by_os_release() {
|
|
pushd "$(dirname "${BASH_SOURCE[0]}")/../service.d/${APP_NAME_SHORT}" &>/dev/null
|
|
|
|
{
|
|
# shellcheck source=/dev/null
|
|
{
|
|
source /etc/os-release
|
|
{
|
|
pushd "${ID}"/"${VERSION_CODENAME}" &>/dev/null
|
|
} || {
|
|
pushd "${ID}" &>/dev/null
|
|
} || {
|
|
pushd "${ID_LIKE}" &>/dev/null
|
|
} || {
|
|
echo "Unsupported OS: ${ID} ${VERSION_CODENAME} (${ID_LIKE})"
|
|
exit 1
|
|
}
|
|
|
|
pwd
|
|
|
|
popd &>/dev/null
|
|
|
|
} || {
|
|
echo "Unsupported OS: unknown"
|
|
exit 1
|
|
}
|
|
|
|
}
|
|
|
|
popd &>/dev/null
|
|
}
|
|
|
|
SETUP_SCRIPT_DIRECTORY=$(__get_setup_script_directory_by_os_release)
|
|
|
|
readonly SETUP_SCRIPT_DIRECTORY
|
|
readonly SETUP_SCRIPT_FILENAME="cleanup-${APP_NAME_SHORT}.sh"
|
|
readonly SETUP_SCRIPT_FILEPATH="${SETUP_SCRIPT_DIRECTORY}/${SETUP_SCRIPT_FILENAME}"
|
|
|
|
echo "🟩 Running ${SETUP_SCRIPT_FILENAME}..."
|
|
$SHELL "${SETUP_SCRIPT_FILEPATH}" "${BUILD_PATH}"
|