-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make environments use all the expected repositories
* dev environment uses apt-test nightlies repo for Debian, and yum-test for dom0 * staging environment uses apt-test main repo for Debian, and yum-test for dom0 * prod environment uses apt main repo for Debian and yum for dom0
- Loading branch information
Showing
2 changed files
with
24 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
--- | ||
# Both prod.dom0_yum_repo_url and test.dom0_yum_repo_url will be appended to with | ||
# the respective Fedora release depending on Qubes OS version | ||
# | ||
# Production variables, for use with real-world installs | ||
prod: | ||
dom0_yum_repo_url: "https://yum.securedrop.org/workstation/dom0/f25" | ||
dom0_yum_repo_url: "https://yum.securedrop.org/workstation/dom0/" | ||
apt_repo_url: "https://apt.freedom.press" | ||
signing_key_filename: "securedrop-release-signing-pubkey-2021.asc" | ||
component: "main" | ||
# Development variables, suited for use during local development | ||
dev: | ||
dom0_yum_repo_url: "https://yum-test.securedrop.org/workstation/dom0/f25" | ||
# Staging and Dev variables, for QAing and local development | ||
test: | ||
dom0_yum_repo_url: "https://yum-test.securedrop.org/workstation/dom0/" | ||
apt_repo_url: "https://apt-test.freedom.press" | ||
signing_key_filename: "apt-test-pubkey.asc" | ||
component: "nightlies" |