-
Notifications
You must be signed in to change notification settings - Fork 8
Update install.sh #2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
Bitsonwheels
commented
Sep 12, 2025
- Fix local interface detection for /etc/netplan/01-netcfg.yaml creation
- Fix System Version Code detection for right apt source creation
- Fix GPG key verification
- add gpg to install apps
- Fix local interface detection for /etc/netplan/01-netcfg.yaml creation - Fix System Version Code detection for right apt source creation - Fix GPG key verification - add gpg to install apps
fix "No such file or directory" and apparmor error
rohityadavcloud
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some changes make sense, but largely other changes are not acceptable.
|
|
||
| ```bash | ||
| curl -sL https://c8k.in/stall.sh | bash | ||
| curl -sL https://raw.githubusercontent.com/Bitsonwheels/cloudstack-installer/refs/heads/main/install.sh | bash |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can't hardcode to this repo
|
|
||
| ```bash | ||
| curl -o install.sh https://c8k.in/stall.sh | ||
| curl -o install.sh https://raw.githubusercontent.com/Bitsonwheels/cloudstack-installer/refs/heads/main/install.sh |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can't hardcode to this repo
| NAME=$(sed -rn 's|^deb\s+\S+\s+(\w+)\s+main.*$|\1|p' /etc/apt/sources.list | head -n 1) | ||
|
|
||
| mkdir -p /etc/apt/keyrings | ||
| wget -O - https://download.cloudstack.org/release.asc | sudo tee /etc/apt/trusted.gpg.d/cloudstack.asc |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
duplicate here?
|
cc @sudo87 |