mirror of
https://github.com/webmin/webmin.git
synced 2025-07-23 00:30:33 +00:00
Fix to improve release naming
This commit is contained in:
@ -1,31 +1,31 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# shellcheck disable=SC1090 disable=SC2059 disable=SC2164 disable=SC2181 disable=SC2317
|
# shellcheck disable=SC1090 disable=SC2059 disable=SC2164 disable=SC2181 disable=SC2317
|
||||||
# webmin-setup-repo.sh
|
# webmin-setup-repo.sh
|
||||||
# Sets up a stable, release candidate, or cutting-edge repository for Webmin
|
# Sets up a stable, prerelease, or unstable repository for Webmin and Usermin
|
||||||
# and Usermin packages on Debian-based and RPM-based systems
|
# packages on Debian-based and RPM-based systems
|
||||||
|
|
||||||
# Default values that can be overridden
|
# Default values that can be overridden
|
||||||
repo_host="download.webmin.com"
|
repo_host="download.webmin.com"
|
||||||
repo_download="https://$repo_host"
|
repo_download="https://$repo_host"
|
||||||
repo_download_rc="https://rc.download.webmin.dev"
|
repo_download_prerelease="https://rc.download.webmin.dev"
|
||||||
repo_download_edge="https://download.webmin.dev"
|
repo_download_unstable="https://download.webmin.dev"
|
||||||
repo_key="developers-key.asc"
|
repo_key="developers-key.asc"
|
||||||
repo_key_download="$repo_download/$repo_key"
|
repo_key_download="$repo_download/$repo_key"
|
||||||
repo_key_suffix="webmin-developers"
|
repo_key_suffix="webmin-developers"
|
||||||
repo_name="webmin-stable"
|
repo_name="webmin-stable"
|
||||||
repo_name_rc="webmin-rc"
|
repo_name_prerelease="webmin-prerelease"
|
||||||
repo_name_edge="webmin-edge"
|
repo_name_unstable="webmin-unstable"
|
||||||
repo_component="main"
|
repo_component="main"
|
||||||
repo_dist="stable"
|
repo_dist="stable"
|
||||||
repo_section="contrib"
|
repo_section="contrib"
|
||||||
repo_description="Webmin Stable Releases"
|
repo_description="Webmin Releases"
|
||||||
repo_description_rc="Webmin Release Candidate Builds"
|
repo_description_prerelease="Webmin Prerelease"
|
||||||
repo_description_edge="Webmin Edge Builds"
|
repo_description_unstable="Webmin Development Builds"
|
||||||
install_check_binary="/usr/bin/webmin"
|
install_check_binary="/usr/bin/webmin"
|
||||||
install_message="Webmin and Usermin can be installed with:"
|
install_message="Webmin and Usermin can be installed with:"
|
||||||
install_packages="webmin usermin"
|
install_packages="webmin usermin"
|
||||||
|
|
||||||
# Repository mode (stable, rc, edge)
|
# Repository mode (stable, prerelease, unstable)
|
||||||
repo_mode="stable"
|
repo_mode="stable"
|
||||||
|
|
||||||
download_curl="/usr/bin/curl"
|
download_curl="/usr/bin/curl"
|
||||||
@ -52,14 +52,14 @@ General options:
|
|||||||
-h, --help Display this help message
|
-h, --help Display this help message
|
||||||
|
|
||||||
Repository types:
|
Repository types:
|
||||||
--stable Set up the stable repo, built with extra checks
|
--stable Set up the stable repo, built with extra testing
|
||||||
--rc Set up the release candidate repo from latest tag
|
--prerelease Set up the prerelease repo built from latest tag
|
||||||
--edge Set up cutting-edge repo from the latest commit
|
--unstable Set up unstable repo built from the latest commit
|
||||||
|
|
||||||
Repository configuration:
|
Repository configuration:
|
||||||
--host=<host> Main repository host
|
--host=<host> Main repository host
|
||||||
--rc-host=<host> Release candidate repository host
|
--prerelease-host=<host> Prerelease repository host
|
||||||
--edge-host=<host> Cutting-edge repository host
|
--unstable-host=<host> Unstable repository host
|
||||||
--key=<key> Repository signing key file
|
--key=<key> Repository signing key file
|
||||||
--key-suffix=<suffix> Repository key suffix for file naming
|
--key-suffix=<suffix> Repository key suffix for file naming
|
||||||
|
|
||||||
@ -83,8 +83,8 @@ process_args() {
|
|||||||
for arg in "$@"; do
|
for arg in "$@"; do
|
||||||
case "$arg" in
|
case "$arg" in
|
||||||
--stable) repo_mode="stable" ;;
|
--stable) repo_mode="stable" ;;
|
||||||
--rc) repo_mode="rc" ;;
|
--prerelease|--rc) repo_mode="prerelease" ;;
|
||||||
--edge) repo_mode="edge" ;;
|
--unstable|--testing|-t) repo_mode="unstable" ;;
|
||||||
-f|--force) force_setup=1 ;;
|
-f|--force) force_setup=1 ;;
|
||||||
-h|--help) usage ;;
|
-h|--help) usage ;;
|
||||||
--host=*)
|
--host=*)
|
||||||
@ -92,11 +92,11 @@ process_args() {
|
|||||||
repo_download="https://$repo_host"
|
repo_download="https://$repo_host"
|
||||||
repo_key_download="$repo_download/$repo_key"
|
repo_key_download="$repo_download/$repo_key"
|
||||||
;;
|
;;
|
||||||
--rc-host=*)
|
--prerelease-host=*)
|
||||||
repo_download_rc="https://${arg#*=}"
|
repo_download_prerelease="https://${arg#*=}"
|
||||||
;;
|
;;
|
||||||
--edge-host=*)
|
--unstable-host=*)
|
||||||
repo_download_edge="https://${arg#*=}"
|
repo_download_unstable="https://${arg#*=}"
|
||||||
;;
|
;;
|
||||||
--key=*)
|
--key=*)
|
||||||
repo_key="${arg#*=}"
|
repo_key="${arg#*=}"
|
||||||
@ -108,14 +108,14 @@ process_args() {
|
|||||||
--name=*)
|
--name=*)
|
||||||
base_name="${arg#*=}"
|
base_name="${arg#*=}"
|
||||||
repo_name="$base_name"
|
repo_name="$base_name"
|
||||||
repo_name_rc="${base_name}-rc"
|
repo_name_prerelease="${base_name}-prerelease"
|
||||||
repo_name_edge="${base_name}-edge"
|
repo_name_unstable="${base_name}-unstable"
|
||||||
;;
|
;;
|
||||||
--description=*)
|
--description=*)
|
||||||
base_description="${arg#*=}"
|
base_description="${arg#*=}"
|
||||||
repo_description="$base_description Stable Releases"
|
repo_description="$base_description Releases"
|
||||||
repo_description_rc="${base_description} Release Candidate Builds"
|
repo_description_prerelease="${base_description} Prerelease"
|
||||||
repo_description_edge="${base_description} Edge Builds"
|
repo_description_unstable="${base_description} Development Builds"
|
||||||
;;
|
;;
|
||||||
--component=*)
|
--component=*)
|
||||||
repo_component="${arg#*=}"
|
repo_component="${arg#*=}"
|
||||||
@ -143,18 +143,18 @@ process_args() {
|
|||||||
|
|
||||||
# Set active repo variables based on mode
|
# Set active repo variables based on mode
|
||||||
case "$repo_mode" in
|
case "$repo_mode" in
|
||||||
rc)
|
prerelease)
|
||||||
active_repo_name="$repo_name_rc"
|
active_repo_name="$repo_name_prerelease"
|
||||||
active_repo_description="$repo_description_rc"
|
active_repo_description="$repo_description_prerelease"
|
||||||
active_repo_download="$repo_download_rc"
|
active_repo_download="$repo_download_prerelease"
|
||||||
if [ "$repo_dist" = "stable" ]; then
|
if [ "$repo_dist" = "stable" ]; then
|
||||||
repo_dist="webmin"
|
repo_dist="webmin"
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
edge)
|
unstable)
|
||||||
active_repo_name="$repo_name_edge"
|
active_repo_name="$repo_name_unstable"
|
||||||
active_repo_description="$repo_description_edge"
|
active_repo_description="$repo_description_unstable"
|
||||||
active_repo_download="$repo_download_edge"
|
active_repo_download="$repo_download_unstable"
|
||||||
if [ "$repo_dist" = "stable" ]; then
|
if [ "$repo_dist" = "stable" ]; then
|
||||||
repo_dist="webmin"
|
repo_dist="webmin"
|
||||||
fi
|
fi
|
||||||
@ -253,16 +253,16 @@ ask_confirmation() {
|
|||||||
repo_desc_formatted=$(echo "$active_repo_description" | \
|
repo_desc_formatted=$(echo "$active_repo_description" | \
|
||||||
sed 's/\([^ ]*\)\(.*\)/\1\L\2/')
|
sed 's/\([^ ]*\)\(.*\)/\1\L\2/')
|
||||||
case "$repo_mode" in
|
case "$repo_mode" in
|
||||||
rc)
|
prerelease)
|
||||||
printf \
|
printf \
|
||||||
"\e[47;1;31;82mRelease candidate builds are automated and based on the latest tagged release\e[0m\n"
|
"\e[47;1;31;82mPrerelease builds are automated from the latest tagged release\e[0m\n"
|
||||||
printf "Setup ${repo_desc_formatted} repository? (y/N) "
|
printf "Setup ${repo_desc_formatted} repository? (y/N) "
|
||||||
;;
|
;;
|
||||||
edge)
|
unstable)
|
||||||
printf \
|
printf \
|
||||||
"\e[47;1;31;82mCutting-edge builds are automated, experimental, and unstable versions for\e[0m\n"
|
"\e[47;1;31;82mUnstable builds are automated experimental versions designed for\e[0m\n"
|
||||||
printf \
|
printf \
|
||||||
"\e[47;1;31;82mdevelopment, potentially containing critical bugs and breaking changes \e[0m\n"
|
"\e[47;1;31;82mdevelopment, often containing critical bugs and breaking changes\e[0m\n"
|
||||||
printf "Setup ${repo_desc_formatted} repository? (y/N) "
|
printf "Setup ${repo_desc_formatted} repository? (y/N) "
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
|
Reference in New Issue
Block a user