Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions provisioning/cloud-init-quickstart-fips.yaml
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should also update Line 78, where LANDSCAPE_VERSION is used, to reflect LANDSCAPE_PPA_NAME

Copy link
Contributor Author

@abehnia abehnia Feb 21, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These are two different scripts, did you want me to rename both to LANDSCAPE_PPA_NAME? otherwise, I think each one is using the right variable, they're just named differently in each.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

My mistake - yes - both should be using LANDSCAPE_PPA_NAME for consistency.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Addressed the comment

Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

# Landscape version:
# (self-hosted-25.10|self-hosted-24.04|self-hosted-beta|latest-stable)
{% set LANDSCAPE_VERSION = '24.04' %}
{% set LANDSCAPE_PPA_NAME = 'self-hosted-24.04' %}

# =========================
# END OF SETTING VARIABLES
Expand Down Expand Up @@ -75,7 +75,7 @@ package_reboot_if_required: true
apt:
sources:
source1:
source: 'ppa:landscape/{{ LANDSCAPE_VERSION }}'
source: 'ppa:landscape/{{ LANDSCAPE_PPA_NAME }}'

# `apt install`
packages:
Expand Down
2 changes: 1 addition & 1 deletion provisioning/cloud-init-quickstart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

# Landscape version:
# (self-hosted-25.10|self-hosted-24.04|self-hosted-beta|latest-stable)
{% set LANDSCAPE_PPA_NAME = '24.04' %}
{% set LANDSCAPE_PPA_NAME = 'self-hosted-24.04' %}

# =========================
# END OF SETTING VARIABLES
Expand Down