This is an automated email from the ASF dual-hosted git repository. rohit pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/cloudstack-installer.git
commit e1007b149ba008c4cf1310558424b0333b8b2c1f Author: Rohit Yadav <[email protected]> AuthorDate: Fri Nov 22 12:37:05 2024 +0100 Update install.sh --- install.sh | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/install.sh b/install.sh index adddfde..31cacea 100644 --- a/install.sh +++ b/install.sh @@ -1,6 +1,7 @@ #!/usr/bin/env bash # c8k.in/stall.sh - Easiest Apache CloudStack Installer -# Author: Rohit Yadav <[email protected]> +# Author: Rohit Yadav <[email protected]> and other contributors +# # Install with this command (from your Ubuntu host): # # curl -sSfL https://c8k.in/stall.sh | bash @@ -25,7 +26,7 @@ set -e set -o noglob -CS_VERSION=4.18 +CS_VERSION=4.19 INTERFACE= BRIDGE=cloudbr0 HOST_IP= @@ -138,8 +139,9 @@ EOF configure_repo() { info "Configuring CloudStack $CS_VERSION repo" mkdir -p /etc/apt/keyrings - wget -O- http://packages.shapeblue.com/release.asc 2>/dev/null | gpg --dearmor | sudo tee /etc/apt/keyrings/cloudstack.gpg > /dev/null - echo deb [signed-by=/etc/apt/keyrings/cloudstack.gpg] http://packages.shapeblue.com/cloudstack/upstream/debian/$CS_VERSION / > /etc/apt/sources.list.d/cloudstack.list + wget -O- https://download.cloudstack.org/release.asc 2>/dev/null | gpg --dearmor | sudo tee /etc/apt/keyrings/cloudstack.gpg > /dev/null + # NOTE: debian-based distro packages are now release agnostic + echo deb [signed-by=/etc/apt/keyrings/cloudstack.gpg] https://download.cloudstack.org/ubuntu noble $CS_VERSION / > /etc/apt/sources.list.d/cloudstack.list apt-get update }
