File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
2526set -e
2627set -o noglob
2728
28- CS_VERSION=4.18
29+ CS_VERSION=4.19
2930INTERFACE=
3031BRIDGE=cloudbr0
3132HOST_IP=
138139configure_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
You can’t perform that action at this time.
0 commit comments