Skip to content

Commit e1007b1

Browse files
authored
Update install.sh
1 parent 136c89f commit e1007b1

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

install.sh

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#!/usr/bin/env bash
22
# c8k.in/stall.sh - Easiest Apache CloudStack Installer
3-
# Author: Rohit Yadav <rohit@apache.org>
3+
# Author: Rohit Yadav <rohit@apache.org> and other contributors
4+
#
45
# Install with this command (from your Ubuntu host):
56
#
67
# curl -sSfL https://c8k.in/stall.sh | bash
@@ -25,7 +26,7 @@
2526
set -e
2627
set -o noglob
2728

28-
CS_VERSION=4.18
29+
CS_VERSION=4.19
2930
INTERFACE=
3031
BRIDGE=cloudbr0
3132
HOST_IP=
@@ -138,8 +139,9 @@ EOF
138139
configure_repo() {
139140
info "Configuring CloudStack $CS_VERSION repo"
140141
mkdir -p /etc/apt/keyrings
141-
wget -O- http://packages.shapeblue.com/release.asc 2>/dev/null | gpg --dearmor | sudo tee /etc/apt/keyrings/cloudstack.gpg > /dev/null
142-
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
142+
wget -O- https://download.cloudstack.org/release.asc 2>/dev/null | gpg --dearmor | sudo tee /etc/apt/keyrings/cloudstack.gpg > /dev/null
143+
# NOTE: debian-based distro packages are now release agnostic
144+
echo deb [signed-by=/etc/apt/keyrings/cloudstack.gpg] https://download.cloudstack.org/ubuntu noble $CS_VERSION / > /etc/apt/sources.list.d/cloudstack.list
143145
apt-get update
144146
}
145147

0 commit comments

Comments
 (0)