mirror of
https://github.com/nextcloud/vm.git
synced 2025-10-26 11:27:32 +00:00
42 lines
791 B
Bash
42 lines
791 B
Bash
#!/bin/bash
|
|
|
|
# T&M Hansson IT AB © - 2024, https://www.hanssonit.se/
|
|
|
|
true
|
|
SCRIPT_NAME="Update Server + Nextcloud"
|
|
# shellcheck source=lib.sh
|
|
source <(curl -sL https://raw.githubusercontent.com/nextcloud/vm/main/lib.sh)
|
|
|
|
# Check for errors + debug code and abort if something isn't right
|
|
# 1 = ON
|
|
# 0 = OFF
|
|
DEBUG=0
|
|
debug_mode
|
|
|
|
# Must be root
|
|
root_check
|
|
|
|
mkdir -p "$SCRIPTS"
|
|
|
|
if [[ "${1}" =~ ([[:upper:]]) ]]
|
|
then
|
|
msg_box "Please use lower case letters for the beta/rc/minor."
|
|
exit
|
|
fi
|
|
|
|
if [ "${1}" = "minor" ]
|
|
then
|
|
echo "$((NCMAJOR-1))" > /tmp/minor.version
|
|
elif [ "${1}" = "beta" ]
|
|
then
|
|
echo "beta" > /tmp/prerelease.version
|
|
elif [[ "${1}" == *"rc"* ]]
|
|
then
|
|
echo "${1}" > /tmp/prerelease.version
|
|
fi
|
|
|
|
# Delete, download, run
|
|
run_script GITHUB_REPO nextcloud_update
|
|
|
|
exit
|